:root {
  font-size: 1000%;
  font-family: 'PH'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  color: #1D1D1D;
  font-variation-settings: "wtun" 640.29, "wtsp" 100;
  overflow: hidden;
  background-color: #FF352A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun {
  background-color: #FFC5F4;
  border-radius: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  animation: animating-multiple-properties 4s linear 0s infinite alternate ;
}

/* it is possible to animate multiple properties in a single animation */
@keyframes animating-multiple-properties {
  from {transform: translateY(110vh); font-variation-settings: 'wtun' 100;}
  to {transform: translateY(0); font-variation-settings: 'wtun' 900;}

    /* unset properties i.e. 'filter' will revert to default values */
  }
