body {
    background-color: #323232;
    color: #DDD0C8;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.menu-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-shadow: 4px 4px 0 #000;
}

h1 span:nth-child(1) { color: #ef4444; }
h1 span:nth-child(2) { color: #f97316; }
h1 span:nth-child(3) { color: #22c55e; }
h1 span:nth-child(4) { color: #3b82f6; }
h1 span:nth-child(5) { color: #facc15; }
h1 span:nth-child(7) { color: #ef4444; }
h1 span:nth-child(8) { color: #f97316; }
h1 span:nth-child(9) { color: #22c55e; }
h1 span:nth-child(10) { color: #3b82f6; }

.button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 20rem;
}

.menu-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 4px solid #DDD0C8;
    border-radius: 0.75rem;
    box-shadow: 0 4px 0 #000;
    background-color: #323232;
    color: #DDD0C8;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.menu-btn:hover {
    box-shadow: 0 2px 0 #000;
    transform: translateY(2px);
}

.menu-btn:active {
    box-shadow: none;
    transform: translateY(4px);
}
