.gallery-body {
  margin: 0;
  font-family: sans-serif;
  background-image: url('images/bg3.png');
  background-repeat: repeat;
  background-size: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.gallery-header {
  margin-top: 2rem;
  text-align: center;
}
.gallery-header h1 {
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px black;
}

.gallery-container {
  width: 900px;
  max-width: 100%;
  padding: 1rem 0;
  background: white;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

.photo-grid img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.photo-grid img:hover {
  transform: scale(1.15);
  z-index: 1;
}
