body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow-y: auto;
}

.container {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
    padding: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 24px;
    margin-bottom: 30px;
}

.game {
    margin-top: 30px;
}

.game h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.game-instructions {
    font-size: 16px;
    margin-top: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 32px;
    }

    p {
        font-size: 18px;
    }

    .game-container {
        padding: 15px;
    }
}