body {
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#9609e8, #cfd2e9);
}

/* Centrer .quizz-container avec flexbox */
.quizz-container {
    width: 100%;
    max-width: 500px;
    background: #f1f1f1;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

#container-question, #container-content {
    margin-bottom: 1rem;
}

#quizz-img {
    width: 100%;
    height: auto; /* Maintenir le ratio d'aspect de l'image */
    max-height: 50vh; /* Limiter la hauteur de l'image à 40% de la hauteur de la fenêtre */
    display: block;
    border-radius: 10px;
}


#quizz-question {
    margin: 2rem 0 1rem 0;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: rgb(7, 56, 56);
    text-transform: uppercase;
}

#container-content label {
    display: block;
    margin-left: 2rem;
    font-weight: bold;
    font-size: 18px;
}

#container-content input {
    margin: 1rem auto;
    width: 90%;
    height: 50px;
    border: none;
    outline: none;
    background: none;
    border-bottom: 2px solid grey;
    font-size: 18px;
    font-weight: 500;
}

button {
    margin: 0 auto;
    display: block;
    width: 90%;
    height: 45px;
    color: #f1f1f1;
    font-weight: bold;
    font-size: 18px;
    background: rgb(4, 49, 45);
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s ease-in-out;
}

button:hover {
    background: #000;
}

#resultatFinal {
    text-align: center;
    margin: 2rem 0;
    font-weight: bold;
    font-size: 24px;
    color: #333;
    text-transform: uppercase;
}
