:root {
  font-size: 300%;
  background-color: black;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

body {
  margin: 0;
}

.box1 {
  display: grid;
  grid-template-columns: repeat(15, 150px);
  grid-template-rows: 400px;
  justify-items: center;
  grid-auto-flow: column;
  align-items: top;
  background-color: rgb(0, 0, 0);
  height: 100vh;
}

h1 {
  font-family: "RuderPlakatLLVar"; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  color: rgb(255, 255, 255);
  font-size: 200%;
  line-height: 1;
  animation: my-growth 4s ease-in infinite alternate;
  position: relative;
  top: -30px;
}

p {
  font-family: "RuderPlakatLLVar"; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  font-size: 100%;
  animation: my-rotation 4s ease-in infinite alternate;
  line-height: 0;
  position: relative;
  top: -50px;
}

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

@keyframes my-rotation {
  from {
    font-variation-settings: "YTUC" 100, "YTLC" 100;
    transform: rotate(0deg);
    color: rgb(255, 255, 255);
  }
  to {
    font-variation-settings: "YTUC" 900, "YTLC" 900;
    transform: rotate(180deg);
    color: rgb(255, 0, 225);
  }
}
