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

*{
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;


}

p {
  font-family: 'Antarctica', 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: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: 1fr; */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: antiquewhite;
  align-items: center;
  padding: 20% 0;
  perspective: 6000px;
  position: relative;
}


.titel {
  color: tomato;
  overflow: hidden;
  -webkit-text-stroke: 4px rgb(25, 106, 192);
  text-shadow: 6px 6px rgb(25, 106, 192);

  
}

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

.down {
  transform: translateZ(5500px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 1.5s infinite normal;
  position: absolute;
  left: 10%;
  z-index: 2;
}  

.up2 {
  justify-self: center;
  position: absolute;
  transform: translateZ(5800px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 3s infinite normal;
  z-index: 3;
}

.down2 {
  transform: translateZ(5500px);
  animation: riesig 6000ms cubic-bezier(0.45, 0, 0.55, 1) 4.5s infinite normal;
  position: absolute;
  left: 10%;
  z-index: 4;
} 





.breit {
  font-variation-settings: 'wght' 550, 'wdth' 200, "CNTR" 0;
  animation: fade 6000ms cubic-bezier(0.45, 0, 0.55, 1) infinite normal;
  font-size: 20em;
  animation-delay: calc(var(--animation-order)*1.5s);
}

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


  100% {
    transform: translateZ(-6500px);
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}