.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 10px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  /* transform: scale(1.02);
  transition: transform 0.3s ease; */
  cursor: pointer;
}

.gallery img.wide {
  grid-column: span 2;
}

.gallery img.tall {
  grid-row: span 2;
}