.container {
  width: 100%;
  min-height: 100vh;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  padding: 50px 8%;
}

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

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}


