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

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

h1 {
  color: white;
}

.S { 
  animation: my-super-slant 2s infinite alternate;
  animation-delay: 0.3s; 
}

.A { 
  animation: my-super-slant 2s infinite alternate;
  animation-delay: 0.6s; 
}

.L { 
  animation: my-super-slant 2s infinite alternate;
  animation-delay: 0.9s; 
}

.I { 
  animation: my-super-slant 2s infinite alternate;
  animation-delay: 1.2s; 
}

@keyframes my-super-slant {
  from { font-variation-settings: 'wght' 900, 'wdth' 300;    }
  to {  font-variation-settings: 'wght' 900, 'wdth' 900;   }
}

