:root {
  font-size: 1000%;
  font-family: 'Recursive'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */

}
body {
  background-color: rgb(105, 195, 230);
  /* overflow: hidden; */
}

h1 {
  color: white;
  margin-top: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  letter-spacing: -0.05rem;
  line-height: 0.7;
  animation: my-super-slant 1s infinite alternate;
  animation-timing-function: ease-in-out;
}

@keyframes my-super-slant {
  from { font-variation-settings: 'slnt' 0, 'CRSV' 0, 'wght' 300 }
  to { font-variation-settings: 'slnt' -15, 'CRSV' 0, 'wght' 1000 }
}