body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
}
h1 {
  text-align: center;
  margin: 2rem 0;
  font-weight: 700;
  color: #333;
}
.gallery-img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
