body {
    font-family: 'Press Start 2P', monospace;
    background-color: #1a1a1a;
    color: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-links li a {
    background-color: black;
    color: white;
    border: 2px solid #ff69b4;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
}

.moving-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.moving-background img {
    position: absolute;
    width: 150%;
    height: 150%;
    object-fit: cover;

    animation: background-move 30s infinite alternate linear;

}

@keyframes background-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-20%, -20%);
    }
}

.quiz-container {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.5);
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    background-color: rgba(44, 44, 44, 0.85);
}

h1 {
    color: #ff3399;
    margin-bottom: 20px;
}

.question-text {
    margin-bottom: 25px;
    font-size: 1.2em;
    color: #f0f0f0;
}

.answer-options button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background-color: #3e3e3e;
    color: #ff66b2;
    border: 2px solid #ff66b2;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
}

.answer-options button:hover:not(:disabled) {
    background-color: #ff3399;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.pink-btn {
    background-color: #ff0066;
    color: white;
    padding: 15px 30px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pink-btn:hover {
    background-color: #cc0052;
}

.hidden {
    display: none !important;
}

#result h2 {
    color: #00ff99;
}

#result p {
    font-size: 1.1em;
    line-height: 1.5;
}