body {
    font-family: sans-serif;
    text-align: center;
    background-color: #E6E6FA; /* Lavender */
}

h1 {
    color: #4B0082; /* Indigo */
    margin-bottom: 30px;
    font-size: 2.5em;
}

.game-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .game-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.game-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ADD8E6; /* Light Blue */
    border: 3px solid #8A2BE2; /* Blue Violet */
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: #4B0082; /* Indigo */
    width: 200px;
    transition: background-color 0.3s;
    font-size: 1.2em;
}

.game-button:hover {
    background-color: #D8BFD8; /* Thistle */
    transform: scale(1.1);
}

.game-button img {
    width: 150px;
    margin-bottom: 15px;
}
