/* GENERAL PAGE STYLING */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #3A7BD5, #3CC47C);
    font-family: "Arial", sans-serif;
}

/* MAIN CONTAINER */
.container {
    background: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* HEADERS */
h1,
h2 {
    text-align: center;
    color: #4b0082;
    font-weight: bold;
}

/* TIMER */
.timer {
    display: block;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #4b0082;
    margin-bottom: 20px;
}

/* BUTTONS */
#startButton,
#doneButton {
    display: block;
    margin: 20px auto;
    background-color: #ffdf00;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

#startButton:hover,
#doneButton:hover {
    background-color: #ffcc00;
    transform: scale(1.05);
}

/* QUESTION CARDS */
.questions {
    display: none;
}

.question1,
.question2,
.question3,
.question4,
.question5 {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 15px auto;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    color: #333;
}

/* RADIO BUTTON SPACING */
input[type="radio"] {
    margin: 0 8px 0 15px;
}

/* RESULTS TEXT */
#correctAnswers,
#incorrectAnswers,
#missed {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #4b0082;
    margin-top: 10px;
}