body {
  margin: 0;
  background: transparent;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 2s ease-in-out; /* smooth blend */
}

.slideshow img.active {
  opacity: 1;
}
.content {
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 5px;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#headline {
  font-size: clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  margin-right: 8px;
  color: white;
}

.word.show {
  opacity: 1;
  transform: translateY(0);
}
