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

h1 {
  margin: 20px 0;
}

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

.img-card {
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
  transition: transform 0.2s;
}

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

.img-card img {
  width: 100%;
  display: block;
  height: auto;
}
