/* quiz.css */

body {
    font-family: Playfair Display; /* Use your main font */
    background-color: #e8e8e8; /* Match your background */
    color: #333; /* Match your text color */
    padding: 20px;
    text-align: center; /* match other pages */
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #333;
    margin-bottom: 10px;
}

header p {
    color: #666;
}

main {
    max-width: 800px; /* Match your main content width */
    margin: 20px auto; /* Match your main content margins */
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.question {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.question p {
    font-weight: bold;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}

input[type="radio"] {
    margin-right: 5px;
}

button[type="submit"] {
    background-color: #ff9800; /* Match your button color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 20px auto;
}

button[type="submit"]:hover {
    background-color: #f57c00;
}

#quiz-results {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

#quiz-results h2 {
    color: #333;
    margin-bottom: 15px;
}

#quiz-results p {
    color: #555;
    line-height: 1.6;
}
