@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700;900&display=swap');

html {
  scrollbar-width: none;
}

body {
  margin: 0;
  background-color: #3B859D;
  color: white;
}

/* Hide scrollbar for Chrome, Safari and Opera */
/* body::-webkit-scrollbar {
  display: none;
} */

.scroll-hint-text {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  line-height: 1em;
  font-size: 3rem; 
  text-align: center;

  animation-duration: 2s;
  animation-name: fade-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.scene {
  position: relative;
  height: 100vh;
}

#scene-5 {
  position: relative;
  height: 400vh;
}

#scene-6 {
  height: 500vh;
}

#sticky-logo-container,
#sticky-firework-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.santa {
  width: 100%;
  height: auto;
}

.sticky-top {
  position: sticky;
  top: 0;
}

#snow,
#snow-front {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
}

#snow-front {
  z-index: 999;
}

.scroll-hint,
.rotate-hint {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.rotate-hint {
  background-color: rgb(0, 0, 0, 0.3);
  z-index: 9999;
}

.scroll-hint-arrow {
  width: 20%;
  height: auto;
  max-height: 400px;
}

.hat {
  background-image: url(./assets/Weihnachtsmann-Muetze.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: 5%;
  right: 5%;
}

#logo {
  width: 100%;
  height: auto;
}

.fireworks,
.firework {
  position: absolute;
  top: 0;
}

.firework {
  left: 0;
  height: 75%;
  width: 50%;
}

.hide {
  opacity: 0;
  transition: opacity 1s;
}

.show {
  opacity: 1;
  transition: opacity 1s;
}

.rotate-hint-text {  
  animation-duration: 2s;
  animation-name: fade-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.phone {
  height: 40px;
  width: 80px;
  border: 3px solid white;
  border-radius: 10px;
  animation: rotate 1.5s ease-in-out infinite alternate;
  margin: 20px 0;
}

.rotate-hint-text {
  font-size: 1rem;
}

@keyframes rotate {
  0% {
		transform: rotate(0deg)
	}
	50% {
		transform: rotate(90deg)
	}
	100% {
		transform: rotate(90deg)
	}
}

@keyframes fade-in-out {
  0% {
    opacity: 0.1;
    transform: scale(0.96);
  }

  100% {
    opacity: 0.9;
    transform: scale(1);
  }
}

@media only screen and (min-width:481px) {
  .rotate-hint {
    display: none;
  }
}

@media only screen and (max-width:481px) {
  html, body {
    overflow: hidden;
  }

  .scroll-hint {
    display: none;
  }
}