.welcome-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  font-family: Unageo;
  font-weight: 900;
  
}

.welcome-overlay {
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.2);
}

.welcome-video {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.welcome-text {
  position: absolute;
  top: 50%;
  left : 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(20px, 5vw + 2vh, 80px);
  text-align: center;
  text-wrap: nowrap;
  z-index: 2;
  color: white;
  font-weight: 900;
  mix-blend-mode: difference;
  text-transform: uppercase;
}

.teasing-animation {
  z-index: 2;
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0px;
  left: 95%;
  transform: translate(-100%, -100%);
  font-size: clamp(10px, 3vw + 2vh, 40px);
}

.teasing-text {
  color: black;
  text-wrap: nowrap;
  font-family: Unageo-Light;
  font-size: 4vh;
  justify-self: left;
}

@keyframes slidein {
      from {
        transform: translate(0%, -10%);
      }
      to {
        transform: translate(0%, 10%);
      }
    }

.down-arrow {
  margin: 0px 10px;
  animation: 1s linear 1s infinite alternate slidein;
}

.down-arrow:hover {
  
  bottom: -15px;
}