:root {
  font-size: 100%;
}

/* Violet #a023e6 */
/* Grün #00f000 */

body {
  margin-top: 2vw;
  height: 100vh;
  background-color: #a023e6;
  overflow: hidden;
  /* justify-content: center;
  align-items: center; */
  /* position: fixed; */

}

div {
  transform: translate(0,0);
  animation: switch 2s ease-out alternate-reverse infinite;

}


@keyframes switch {

  0% {
    margin-left: 1vw;
    width: 100%;
  }

  /* 50% {
    margin-left: 30w;
  } */

  100% {
    margin-right: 1vw;
    width: 300%;

  }
  
}


/* svg {
  position: fixed;
  top: auto;
  bottom: auto;
  margin: auto auto;
  align-items: center;
} */


span {
  width: 100vw;
  right: 0;
  font-family: 'Acumin';
  text-transform: uppercase;
  line-height: .8;
  font-variation-settings: 'wght' 300, 'wdth' 1;
  font-size: 8vw;
  color: #00f000;
  animation: stretch 2s ease-out alternate infinite;
}




@keyframes stretch {

  0% {
    font-variation-settings: 'wght' 100, 'wdth' 50;
  }

  100% {
    font-variation-settings: 'wght' 900, 'wdth' 115;

  }
}

span:nth-child(1) {
  animation-delay: 0.1s;
}

span:nth-child(2) {
  animation-delay: 0.2s;
}

span:nth-child(3) {
  animation-delay: 0.3s;
}

span:nth-child(4) {
  animation-delay: 0.4s;
}

span:nth-child(5) {
  animation-delay: 0.5s;
}

span:nth-child(6) {
  animation-delay: 0.6s;
}

span:nth-child(7) {
  animation-delay: 0.7s;
}

span:nth-child(8) {
  animation-delay: 0.8s;
}

span:nth-child(9) {
  animation-delay: 0.9s;
}

span:nth-child(10) {
  animation-delay: 1s;
}

span:nth-child(11) {
  animation-delay: 1.1s;
}




div:nth-child(1) {
  animation-delay: 0s;
}

div:nth-child(2) {
  animation-delay: 1s;
}

div:nth-child(3) {
  animation-delay: 2s;
}

div:nth-child(4) {
  animation-delay: 3s;
}

div:nth-child(5) {
  animation-delay: 4s;
}

div:nth-child(6) {
  animation-delay: 5s;
}

div:nth-child(7) {
  animation-delay: 6s;
}



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

#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;
}