body {
    font-family: sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    //align-items: center;
    //min-height: 100vh;
    margin: 0;
}

.quiz-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}


#question-image {
    max-width: 500px;
    height: auto;
    margin-bottom: 10px;
}

.options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.options button {
    padding: 10px 20px;
    border: solid 1px;
    border-radius: 5px;
    background-color: #87E7F5;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14pt;
}

.options button:hover {
    background-color: #0056b3;
    color: #fff;
}

#feedback {
    margin-bottom: 10px;
    font-weight: bold;
}

#next-button {
    padding: 10px 20px;
    border: none;
    border: solid 3px black;
    border-radius: 5px;
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#next-button:hover {
    background-color: #1e7e34;
}

#resultats {
    margin-top: 20px;
}
