body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100vw;
  height: 100vh;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  scroll-snap-align: center;
  background-color: black;
}

.slide img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

.caption {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 10px;
  font-size: 20px;
  border-radius: 5px;
}