:root {
  font-size: 400%;
  background-color: black;
  text-align: center;
  font-family: 'ruder plakat'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

h1{
color:white;
font-weight: 900;
font-size: 300px;
margin: 0;
letter-spacing: .1rem;
animation: my-super-slant 0.9s infinite alternate;
transform: perspective(800px);
}

h2{
  color:white;
  font-weight: 900;
  font-size: 100px;
  letter-spacing: .1rem;
  margin: 0;
  animation: my-super-slant 0.9s infinite alternate;
}

@keyframes my-super-slant {
  from { font-variation-settings: 'YTLC' 100, 'YTUC' 800, 'YTDE' 100 ; letter-spacing: 0px; font-size: 100px;  }
  to {  font-variation-settings: 'YTLC' 900, 'YTUC' 900, 'YTDE' 900 ; letter-spacing: 0; font-size: 120px;  }
}