.flexgallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.galleryImage {
    width: 100%;
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .galleryImage {
        max-width: 80%;
    }
}