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

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

h1 {
  color: white;
  letter-spacing: 10px;
  width: auto;
  padding: 40px;
  /* background-color: white; */
  font-variation-settings: 'shdw' 50;
  animation: my-super-slant 3s infinite alternate;
}


.big {
  font-size: 350px;
  animation: only-t 10s infinite alternate;  
  /* caps+cmd+7 = per commenti */
}

.foo {
  color: rgb(255, 255, 255);
  animation: my-super-slant 1s infinite alternate-reverse;
}

@keyframes my-super-slant {
  from { font-variation-settings: 'shdw' 10; }
  to {  font-variation-settings: 'shdw' 50; }
}