body {
  background: #111;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  text-align: center;
}

header {
  padding: 40px 20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  color: #aaa;
}

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

#gallery img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.03);
}
