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

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

h1 {
  color: pink;
  width: auto;
  /* animation: my-super-slant 3s infinite alternate; */
  line-height: 31px;
}

.rotated { 
  color: white;
  transform: rotate(180deg);
  /* line-height: 2px; */
}

@keyframes my-super-slant {
  from { font-variation-settings: 'slnt' -45; }
  to {  font-variation-settings: 'slnt' 45; }
}