.slideshow {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%
}

.slideshow-wrapper {
  margin-bottom: 5vh;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.logo {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
}

.floating-arrow {
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 0;
  height: 0;
  border-left: max(4vw, 4vh) solid transparent;
  border-right: max(4vw, 4vh) solid transparent;
  border-top: 3vh solid white;
  cursor: pointer;
  margin-left: -max(4vw, 4vh);
  animation: floating 2s ease-in-out infinite alternate;
}

@keyframes floating {
  0% {
    transform: translateX(-50%) translateY(-10px);
  }

  100% {
    transform: translateX(-50%) translateY(-50px);
  }
}