:root {
  font-size: 366%;
  background-color: rgb(0, 0, 0);
}

body {
  margin: 0;
}

.box1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  text-transform: uppercase;
  position: relative;
  top: 8vh;
}

h1 {
  font-family: "RuderPlakatLLVar"; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  color: rgb(255, 255, 255);
  line-height: 0;
  /* animation: my-growth 9s infinite alternate; */
}

.wide1 {
  /* transform: scaleX(2.6) scaleY(1.7); */
  animation: my-growth-too 12s ease-in infinite;
}

.wide2 {
  /* transform: scaleX(3.2) scaleY(3.2); */
  line-height: 1.1;
  animation: my-growth-big 12s ease-in infinite;
  position: relative;
  top: -15px;
}
.wide3 {
  /* transform: scaleX(3.88) scaleY(1.7); */
  animation: my-growth-to 12s ease-in infinite;
}

.big1 {
  font-size: 498%;
  position: relative;
  top: -68px;
  color: rgb(112, 96, 255);
}

.f {
  display: inline-block;
  position: relative;
  left: 50px;
  animation: my-rotation-f 12s ease-in-out infinite;
}

.a {
  display: inline-block;
  position: relative;
  left: 10px;
  animation: my-rotation-a 12s ease-in-out infinite;
}

.i {
  display: inline-block;
  position: relative;
  left: -17px;
  animation: my-rotation-i 12s ease-in-out infinite;
}

.l {
  display: inline-block;
  position: relative;
  left: -45px;
  animation: my-rotation-l 12s ease-in-out infinite;
}

@keyframes my-growth-too {
  from {
    transform: scaleX(2.6) scaleY(1);
  }
  15% {
    transform: scaleX(3.4) scaleY(0.38);
  }
  22.5% {
    transform: scaleX(2.6) scaleY(1);
  }
  to {
    transform: scaleX(2.6) scaleY(1);
  }
}

@keyframes my-growth-big {
  from {
    transform: scaleX(3.2) scaleY(3.2);
  }
  15% {
    transform: scaleX(4.5) scaleY(4);
    color: rgb(185, 230, 49);
  }
  22.5% {
    transform: scaleX(3.2) scaleY(3.2);
    color: rgb(255, 255, 255);

  }

  to {
    transform: scaleX(3.2) scaleY(3.2);
  }
}

@keyframes my-growth-to {
  from {
    transform: scaleX(3.88) scaleY(1.7);
  }
  15% {
    transform: scaleX(5.5) scaleY(1.3);
    translate: 0 20px;
  }
  22.5% {
    transform: scaleX(3.88) scaleY(1.7);
    translate: 0;
  }
  to {
    transform: scaleX(3.88) scaleY(1.7);
  }
}

@keyframes my-rotation-f {
  22.5% {
    transform: scaleX(1) rotate(0deg);
  }
  30% {
    transform: scaleX(1) rotate(180deg);
  }
  52.5% {
    transform: scaleX(1) rotate(180deg);
  }
  60% {
    transform: scaleX(-1) rotate(180deg);
  }
  to {
    transform: scaleX(1) rotate(0deg);
  }
}

@keyframes my-rotation-a {
  30% {
    transform: scaleX(1) rotate(0deg);
  }
  37.5% {
    transform: scaleX(1) rotate(180deg);
  }
  60% {
    transform: scaleX(1) rotate(180deg);
  }
  67.5% {
    transform: scaleX(-1) rotate(180deg);
  }
  to {
    transform: scaleX(1) rotate(0deg);
  }
}

@keyframes my-rotation-i {
  37.5% {
    transform: scaleX(1) rotate(0deg);
  }
  45% {
    transform: scaleX(1) rotate(180deg);
  }
  67.5% {
    transform: scaleX(1) rotate(180deg);
  }
  75% {
    transform: scaleX(-1) rotate(180deg);
  }
  to {
    transform: scaleY(1) rotate(0deg);
  }
}

@keyframes my-rotation-l {
  45% {
    transform: scaleX(1) rotate(0deg);
  }
  52.5% {
    transform: scaleX(1) rotate(180deg);
  }
  75% {
    transform: scaleX(1) rotate(180deg);
  }
  82.5% {
    transform: scaleX(-1) rotate(180deg);
  }
  to {
    transform: scaleX(1) rotate(0deg);
  }
}
