#quiz-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

#quiz-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

#quiz-question {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

#quiz-options button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

#quiz-options button:hover {
    background-color: #0056b3;
}

#start-quiz1, #start-quiz2 {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
}

#start-quiz1:hover, #start-quiz2:hover {
    background-color: #218838;
}
