body {
    background-color: #f8f9fa;
}

h1 {
    color: #343a40;
}

.img-thumbnail {
    transition: transform 0.2s ease-in-out;
}

.img-thumbnail:hover {
    transform: scale(1.1);
}

.gallery-img {
    width: 100%;
    height: 200px; /* Définissez la hauteur souhaitée */
    object-fit: cover; /* Cette propriété permet de garder le ratio et de remplir le conteneur */
}
