html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #2a2a2a;
}

.photo-gallery {
  padding: 2rem ;
  background: #f9f9f9;
  text-align: center;
}

.gallery-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #222;
  position: relative;
  display: inline-block;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #007BFF;
  margin: 8px auto 0;
  border-radius: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.copyright {
  background-color: #1b4332;
  color: #f9f9f9;
  padding: 1rem;
  text-align: center;
}
