gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); /* Adjust size as needed */
  gap: 10px; /* Spacing between images */
}

.gallery-container img {
  width: 50%;
  height: auto;
  object-fit: cover; /* Ensures images cover the area without distortion */
}