:root {
  font-size: 500%;
  background-color: black;
}

body{
  margin: 0;
}

.box1{
  display: flex;
  justify-content: center;
  flex-direction:column;
  align-items: center;
  background-color: rgb(0, 0, 0);
  height: 100vh;
  text-transform:uppercase;
} 

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

.big1 {
  font-size: 500%;
  animation: my-rotation 6s ease-in-out infinite alternate;
}

@keyframes my-growth {
  from {
    font-variation-settings:"YTUC" 100, "YTLC" 100;
    transform: scaleY(1);
  }
  to {
    font-variation-settings:"YTUC" 900, "YTLC" 100;
    transform: scaleY(1.1);
  }
}

@keyframes my-rotation {
  from {
    /* font-variation-settings:"YTUC" 900, "YTLC" 100; */
    transform: scaleY(-1.9) scaleX(-1) rotate(-180deg);
  }

  47.5% {
    /* font-variation-settings:"YTUC" 900, "YTLC" 100; */
    transform: scaleY(-1.9) scaleX(-1) rotate(-180deg);
  }

  49% {
    transform: scaleY(1.75) scaleX(1) rotate(-180deg);
  }

  95% {
    transform: scaleY(1.75) scaleX(1) rotate(-180deg);
    translate: 50;
  }
  to {
    /* font-variation-settings:"YTUC" 900, "YTLC" 100; */
    transform: scaleY(1.75) scaleX(1) rotate(-180deg);
  }
}
