body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 40px;
}

.container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tile {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.tile:hover {
    transform: scale(1.05);
}

.tile img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.tile h2 {
    margin: 0;
    color: #444;
}

.tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.footer {
    margin-top: 40px;
    color: #666;
    font-size: 0.9em;
}