* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

h1 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.5rem;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.game-button {
    display: block;
    width: 300px;
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.whiteboard {
    background: linear-gradient(135deg, #4a90e2, #5637dd);
}

.poetry {
    background: linear-gradient(135deg, #ff6b6b, #cc2e5d);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .game-button {
        width: 100%;
        max-width: 300px;
    }
}