body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.quiz-container {
    text-align: center; /* Center all text and buttons */
}

.image-container {
    text-align: center;
    margin-top: 20px; /* Reduced space above the image */
    position: relative; /* Allow positioning of children relative to this container */
}

img {
    width: 100%; /* Make image responsive */
    max-width: 300px; /* Limit max width */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain;
    border: 5px solid #333;
    border-radius: 10px;
    margin: 5px 0; /* Reduced margin for spacing */
}

#imageFilename {
    font-weight: bold;
    margin-bottom: 10px; /* Reduced space below the filename */
    height: 30px; /* Fixed height for the filename to reserve space */
    display: flex; /* Ensure filename is displayed correctly */
    justify-content: center; /* Center align the text */
    align-items: center; /* Vertically center the text */
}

.option {
    cursor: pointer;
    padding: 8px; /* Reduced padding */
    margin: 5px; /* Reduced margin for spacing */
    display: inline-block; /* Align options horizontally */
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.option:hover {
    background-color: #e0e0e0; /* Add hover effect */
}
