
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row: auto auto;
  gap: 20px;
  width: 100%;
  max-width: 96vw;
  margin: auto;
}

.gallery img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

