:root {
  font-size: 200%;
  line-height: 0.5;
}

body{
  margin: 0;
}

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

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

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

@keyframes my-growth {
  from {
    font-variation-settings:"YTUC" 100, "YTLC" 100;
  }
  to {
    font-variation-settings:"YTUC" 900, "YTLC" 900;
  }
}

@keyframes my-rotation {
  from {
    transform: scaleY(2.5) rotate(0);
    translate: -70px;
  }
  to {
    transform: scaleY(2.5) rotate(-180deg);
    translate: -70px;
  }
}
