

.bg_page  {
    background-color :#39a493;
}

.bg_page a{
    color: white;
    font-weight: 500;
}

.carrousel {
    position: relative;
    width: 80vw;
    max-width: 1400px; /* Limite maximale pour éviter un carrousel trop large */
    margin: auto;
    overflow: hidden;
}
.carrousel-images {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%; /* Hauteur fixe pour le conteneur (ajustable) */
}
.carrousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Conserve les proportions de l'image */
    flex-shrink: 0;
    width: 100%; /* Largeur maximale (ajustable) */
    height: auto;
}
.carrousel-image:hover {
    cursor: pointer; /* Curseur "main" au survol */
    opacity: 0.9; /* Optionnel : effet visuel léger */
}
.carrousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
}
    .carrousel-button.prev {
        left: 10px;
}
    .carrousel-button.next {
        right: 10px;
}

#bouton-analyse{
   margin-bottom:20px;
   margin-top:20px; 
   background-color: #39a493;
   border-color: #39a493;
   font-size: 2rem;
}

#bouton-contribuer{
   margin-top:20px; 
   background-color: #39a493;
   border-color: #39a493;
   font-size: 2rem;

}

.square {
    border-radius: 15px; /* Bords arrondis */
    text-align: center;
    font-size: 1.75rem;
    margin: 10px; /* Marge autour de chaque carré */
    font-family: "Yanone Kaffeesatz";
    padding: 40px;
    color: white;
}

.square1{
    background-color: #307db8;
}

.square2{
background-color: #e94c60;
}