@import url('https://fonts.googleapis.com/css?family=Caveat|Righteous&display=swap');

.responsive-image {
    width: 52%;
    cursor: pointer; /* Changes cursor to a pointer to indicate clickable */
    display: block; 
    height: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #000; /* Couleur et taille de la bordure */
    border-radius: 10px; /* Pour arrondir les coins de la bordure */
}


.responsive-imagenopointer {
    width: 52%;
    display: block; 
    height: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #000; /* Couleur et taille de la bordure */
    border-radius: 10px; /* Pour arrondir les coins de la bordure */
}

.responsive-image.width90 {
    width: 90%;
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    text-align: center;
}

.lightbox-image {
    max-width: 80%;
    max-height: 80%;
}


.close-btn {
    color: #fff;
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}




.maxdecours-image {
    width: 75%;
    display: block; 
    height: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease; /* Transition douce pour l'effet de survol */
}

.maxdecours-image:hover {
    transform: scale(1.05); /* Légèrement agrandir l'image au survol */
    cursor: pointer; /* Curseur changeant pour indiquer que l'image est cliquable */
}
