: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: 400px;
margin: 0;
line-height: 500px;
letter-spacing: .1rem;
animation: my-super-slant 0.9s infinite alternate;
/* transform: perspective(800px); */
}

h2{
  color:white;
  font-weight: 900;
  font-size: 100px;
  line-height: 120px;
  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; letter-spacing: 0px;   }
  to {  font-variation-settings: 'YTLC' 900, 'YTUC' 900; letter-spacing: 0;   }
}