#thumbnails {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .thumbnail {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50px;
    border: 4px solid black;
    margin: 10px;
	transition: transform 0.3s ease-in-out; /* Transition pour agrandir l'image */
}

/* Règle de média pour les appareils avec une largeur d'écran maximale de 600px (typiquement des téléphones) */
@media only screen and (max-width: 1200px) {
    .thumbnail {
        width: 100px; /* Largeur des miniatures pour les téléphones */
        height: 100px; /* Hauteur des miniatures pour les téléphones */
        margin: 5px; /* Marge autour des miniatures pour les téléphones */
    }
}

.thumbnail:hover {
    transform: scale(1.1); /* Zoom au survol */
}
        .thumbnail img {
            width: 100%;
            height: auto;
            cursor: pointer;
        }
        #fullImage {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9); /* Fond de l'image agrandie avec transparence */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Ajout d'une ombre */
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    text-align: center;
    z-index: 9999; /* Assurez-vous que la boîte modale est au-dessus de tout le reste */
	color: white; /* Couleur du texte */
	width: 90%; /* Largeur de la boîte modale */
    height: auto; /* Hauteur automatique pour s'adapter au contenu */
    max-width: 90vw; /* Largeur maximale en pourcentage de la largeur de la vue */
    max-height: 90vh; /* Hauteur maximale en pourcentage de la hauteur de la vue */
    padding: 10px; /* Ajustez le rembourrage selon vos besoins */
}

#fullImage img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px; /* Ajout d'un bord arrondi aux images */
}
#imageDescription {
    color: white; /* Couleur du texte */
}
   #closeButton {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: white; /* Couleur de la croix */
    background-color: black; /* Couleur de fond de la croix */
    width: 30px; /* Largeur de la croix */
    height: 30px; /* Hauteur de la croix */
    border-radius: 50%; /* Forme de la croix (ronde) */
    text-align: center;
    line-height: 30px;
}