.container_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-grow: 4;
  padding-top: 2em;
  padding-bottom: 5em;
}

.gallery-img-wrapper {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery_img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery_img:hover {
  transform: scale(1.02);
}

/* Responsive styles */
@media (max-width: 768px) {
  .gallery-img-wrapper {
    min-height: 60px;
  }
}
