body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    user-select: none;
}
.img_enonce{
	/*height:5.5cm;*/
    max-height:50vh;
    max-width:50%;
}
.barre {
    border: solid 1px #000;
    width: 100px;
    height: 20px;
    display: inline-block;
    border-radius: 10px;
}

.question {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 90%;
    padding: 20px;
    text-align: center;
}

.question img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.options-container {
    display: flex;
    justify-content: space-between;
}

.option {
    cursor: pointer;
    width: 30%;
    /* Ajustez la largeur selon vos besoins */
     transition: transform 0.3s ease-in-out;

}

.option img {
    width: 100%;
    width: max-content;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
/*
.option img:hover {
    transform: scale(1.05);

}
*/
.option-container div:hover{
  transform: scale(1.05);
}
#imprimer {
    width: 100px;
    height: 100px;
    object-fit: contain;

    background: url('imprimante.png');
    cursor: pointer;
    border-radius: 10px;
    top: 6px;
    right: 6px;
    position: fixed;


}
#liensuivantr,
#liensuivants,
#liensuivante {
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
    text-align: center;

    bottom: 0px;
    position: fixed;
    padding: 20px;
    background: #ffffffde;
    border-radius: 10px;
    margin: auto;
    left: 0;
    font-size: 36px;

}

a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
}
#idrange
{
    accent-color: rgb(0, 200, 0);
}
#catcoin {
    rotate: -40deg;
    left: 0;
    position: relative;
    float: left;
    font-size: 22px;
    top: 30px;
    box-shadow: 5px 5px 7px rgba(33, 33, 33, .7);
    color: #000;
    background: #ffc;
    display: block;
    padding: 1em;

}

#catcoin::first-letter {
    text-transform: capitalize;
}

@media (max-width: 1000px) {
    .option img {
        width: 100%;
    }

    #imprimer {
        display: none;

    }

    .option {
        cursor: pointer;
        width: 30%;
    }

    #catcoin {
        display: none;
    }

    .options {
        overflow-x: scroll;
        width: 100%;
    }

    .options-container {
        width: 300%;
        padding: 60px;
        justify-content: space-around;
    }

    .question {
        margin: 0;
        max-width: 100%;
    }
}


