body {
  margin: 0;
  padding: 0;
  background: url('istockphoto-1401428037-612x612.jpg') center center / cover no-repeat;
  overflow: hidden;
  font-family: sans-serif;
}

.gallery-container {
  width: 100vw;
  height: 100vh;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.gallery-container::-webkit-scrollbar {
  display: none; /* hides scrollbar in Chrome/Safari */
}

.gallery {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.gallery img {
  height: 80vh;
  margin: 0 10px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* Mobile scaling */
@media (max-width: 768px) {
  .gallery img {
    height: 60vh;
    margin: 0 5px;
  }
}
figure {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
}

figure img {
  display: block;
  height: 80vh;
  margin-bottom: 8px;
  border-radius: 10px;
  object-fit: cover;
}

figcaption {
  font-size: 0.9rem;
  color: black;
  opacity: 0.85;
  font-weight: 300;
}

/* Mobile scaling tweak */
@media (max-width: 768px) {
  figure img {
    height: 60vh;
  }

  figcaption {
    font-size: 0.8rem;
  }
}