:root {
  font-size: 100%;
}

/* Violet #a023e6 */
/* Grün #00f000 */
/* Antarctica wdth 1-200, wght 1-950 */

body {
  height: 100vh;
  background-color: #a023e6;
  overflow: hidden;
  margin: auto auto;
}


.text-container {
  height: 20vh;
  display: flex;
  flex-flow: row no-wrap;
  align-content: space-around;
  align-items: center;
  justify-content: space-around;
}

span {
  font-family: 'Antarctica';
  text-transform: uppercase;
  line-height: 1;
  font-variation-settings: 'wght' 1, 'wdth' 20;
  font-size: 16vw;
  color: #00f000;

}

#arrow1 {
  animation: arrow-animation .5s ease-out 0s infinite alternate-reverse;
  font-family: 'Whirly';
}

#arrow2 {
  animation: arrow-animation .5s ease-out 0.1s infinite alternate-reverse;
  font-family: 'Whirly';

}

#arrow3 {
  animation: arrow-animation .5s ease-out 0.2s infinite alternate-reverse;
  font-family: 'Whirly';

}

#arrow4 {
  animation: arrow-animation .5s ease-out 0.3s infinite alternate-reverse;
  font-family: 'Whirly';

}

#arrow5 {
  animation: arrow-animation .5s ease-out 0.4s infinite alternate-reverse;
  font-family: 'Whirly';

}

@keyframes arrow-animation {
  0% {
    opacity: 10%;
    font-variation-settings: 'anim' 100;
  }
  100% {
    opacity: 100%;
    font-variation-settings: 'anim' 200;
  }
}



#navigation-buttons {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

#navigation-buttons a button {
  font-size: 1.5rem;
  font-family: 'Acumin';
  font-variation-settings: 'wght' 800, 'wdth' 50, 'slnt' 0;
  padding: 10px 20px 5px 20px;
  border: 3px solid #fff;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

#navigation-buttons a button:hover {

  font-size: 1.5rem;
  font-family: 'Acumin';
  font-variation-settings: 'wght' 800, 'wdth' 115, 'slnt' 12;
  background-color: #fff;
  color: #a023e6;
}