:root {
  font-size: 100%;
  font-family: 'Cheee'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

*{
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

p {
  font-family: 'Cheee', Helvetica, sans-serif;
}

.back {
  position: absolute;
  top: 20px;
  left: 25px;
  padding: 20px 30px 20px 20px;
  transition: 200ms;
  z-index: 1;
}
.back:hover {
  transform: translateX(-10px);
  transition: 200ms;
}
.long-arrow-left{
  display: block;
  width: 25px;
  height: 25px;
  border-top: 4px solid #000;
  border-left: 4px solid #000;
}
.long-arrow-left{
 transform: rotate(-45deg);
}
.long-arrow-left::after{
  content: "";
  display: block;
  width: 4px;
  height: 45px;
  background-color: black;
  transform: rotate(-45deg) translate(15px, 4px);
  left: 0;
  top: 0;
}

.container {
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: antiquewhite;
  perspective: 6000px;
  position: relative;
}


.titel {
  color: tomato;
  -webkit-text-stroke: 4px antiquewhite;


}

.up {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0s infinite normal;
  z-index: 1;
  top: -30px;
}

.up2 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 100ms infinite normal;
  z-index: 2;
  top: -30px;

}

.up3 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 200ms infinite normal;
  z-index: 3;
  top: -30px;
 
}

.up4 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 300ms infinite normal;
  z-index: 4;
  top: -30px;
}
.up5 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 400ms infinite normal;
  z-index: 5;
  top: -30px;
}
.up6 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 500ms infinite normal;
  z-index: 6;
  top: -30px;
}
.up7 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 600ms infinite normal;
  z-index: 7;
  top: -30px;
}
.up8 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 700ms infinite normal;
  z-index: 8;
  top: -30px;
}
.up9 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 800ms infinite normal;
  z-index: 9;
  top: -30px;
}
.up10 {
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 900ms infinite normal;
  z-index: 10;
  top: -30px;

}

.breit {

  animation: fade 6000ms cubic-bezier(0.45, 0, 0.55, 1) infinite normal;
  font-size: 20em;
  animation-delay: calc(var(--animation-order)*0.1s);
}

@keyframes riesig {
  0% {
    transform: translateZ(5800px);

    font-variation-settings: 'yest' 100, 'grvt' 900;
    bottom: 10%;
  }
  20% {
    transform: translateZ(5800px);

    font-variation-settings: 'yest' 100, 'grvt' 900;
    bottom: 10%;
  }

  50% {
    transform: translateZ(-6500px);

    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 40%;
  }

  70% {
    transform: translateZ(-6500px);

    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 40%;
  }

  96% {
    transform: translateZ(-6500px);
    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 40%;
    opacity: 1;
  }

  100% {
    transform: translateZ(-6500px);
    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 40%;
    opacity: 0;
  }
}


@keyframes versetzt {
  0% {
    transform: translateZ(5800px);
    font-variation-settings: 'yest' 100, 'grvt' 900;
    bottom: 100px;

  }
  45% {
    transform: translateZ(5800px);
    font-variation-settings: 'yest' 100, 'grvt' 900;
    bottom: 100px;
  }

  75% {
    transform: translateZ(-6500px);
    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 100px;
  }

  80% {
    transform: translateZ(-6500px);
    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 100px;
  }
  90% {
    transform: translateZ(-6500px);
    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 350px;
  }

  96% {
    transform: translateZ(-6500px);
    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 350px;
    opacity: 1;
  }

  100% {
    transform: translateZ(-6500px);
    font-variation-settings: 'yest' 800, 'grvt' 100;
    bottom: 350px;
    opacity: 0;
  }
}

.down1 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0s infinite normal;
  z-index: 11;

}
.down2 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.1s infinite normal;
  z-index: 12;

}
.down3 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.2s infinite normal;
  z-index: 13;

}
.down4 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.3s infinite normal;
  z-index: 14;
}
.down5 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.4s infinite normal;
  z-index: 15;

}
.down6 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.5s infinite normal;
  z-index: 16;

}

.down7 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.6s infinite normal;
  z-index: 17;
}


.down8 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.7s infinite normal;
  z-index: 18;

}


.down9 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.8s infinite normal;
  z-index: 19;
}


.down10 {
  position: absolute;
  transform: translateZ(5800px);
  animation: versetzt 6000ms cubic-bezier(0.45, 0, 0.55, 1) 0.9s infinite normal;
  z-index: 20;
}



/* @keyframes fade {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
} */