.image-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: 600px; /* Adjust the width as needed */
}

.image-container img {
  width: 100%;
  height: auto;
}