/* Keep your title centered */
h1 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  max-width: 1000px;
  margin: 0 auto;
}

/* This is the important part */
.photo {
  overflow: hidden;        /* clips zoomed image */
  border-radius: 4px;
}

/* Image styling */
.photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Zoom effect */
.photo img:hover {
  transform: scale(1.1);
}
