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

body{
  margin: 0;
}

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

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

.big1 {
  font-size: 600%;
  line-height: 0;
  animation: my-rotation 4s ease-in-out infinite reverse;
  vertical-align: top;
}

#footer{
  font-family: "GintoNord", sans-serif;
  font-size: 24px;
color: coral;
}

a {
  font-family: "GintoNord", sans-serif;
  font-size: 24px;
color: coral;
}

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

@keyframes my-rotation {
  from {
    transform: scale(1) rotate(0);
  }
  to {
    transform: scale(1) rotate(180deg);
    translate: 5px;
  }
}
