
body {
    font-family: serif;
    background-color: #D8BFD8;
    padding: 20px;
    color: #4B0082; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.quiz-container {
    background: #da92da; 
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    color: #4B0082; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: containerAnimation 0.5s ease-in-out;
}

.question {
    font-size: 24px;
    margin-bottom: 20px;
}

.options {
    list-style-type: none;
    padding: 0;
}

.options li {
    margin: 10px 0;
}

button {
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    background-color: #9370DB; 
    border: 3px solid #BA55D3; 
    border-radius: 20px;
    color: #4B0082; 
    transition: background-color 0.3s ease;
    display: inline-block;
    animation: buttonAnimation 0.5s ease-in-out infinite;
}

button:hover {
    background-color: #4B0082; 
    color: #E6E6FA; 
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .quiz-container {
        padding: 20px;
    }

    .question {
        font-size: 20px;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
    }
}
