body {
    background-color: black;
    color: white;
    font-family: 'Press Start 2P', sans-serif;
    text-align: center;
    user-select: none;
}

.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo {
    width: 400px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInLogo 2s ease-out forwards;
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.menu-button {
    background-color: #222;
    color: white;
    border: 3px solid white;
    padding: 15px 60px; /* Ensuring all buttons have same width */
    margin: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
    width: 250px; /* Fixed width for uniform buttons */
    text-align: center;
}

.menu-button:hover {
    background-color: white;
    color: black;
}

.menu-music {
    display: none;
}
