.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

.gallery a {
  width: 300px;
  margin: 1rem;
}
.gallery img {
  width: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  height: auto;
}
