
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  text-align: center;
}

h1 {
  margin-top: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}
