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

body{
height: 100vh;
display:flex;
justify-content: center;
align-items: center; 
}

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

h2{
  color:white;
  font-weight: 900;
  font-size: 140px;
  letter-spacing: .1rem;
  margin: 0;
  line-height: 125px;
  text-align: left;
  animation: my-super-slant 0.5s infinite alternate;
}

@keyframes my-super-slant {
  from { font-variation-settings: 'YTLC' 100; letter-spacing: 0px;   }
  to {  font-variation-settings: 'YTLC' 900;  letter-spacing: 0px;   }
}