body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #d63384;
  margin-bottom: 40px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}
