:root {
  font-size: 300%;
  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: white;
  width: auto;
  line-height: 80px;
  transition: all 0.3s ease;
  font-variation-settings: 'slnt' 45;
}

h1:hover {
  font-variation-settings: 'slnt' -45;
  transition: all 0.3s ease;
}

.rotated { 
  color: white;
  transform: rotate(180deg);
  transition: all 0.3s ease;
  line-height: 80px;
}
.rotated:hover {
  font-variation-settings: 'slnt' -45;
  transition: all 0.10s ease;
}