.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns as desired */
    gap: 10px; /* Add spacing between images */
}

.image-gallery img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc; /* Add a border around each image */
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

img {
  width: 100%;
  height: auto;
}