:root {
  font-family: 'Graduate'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  background-color: #00a1de;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#flexbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
}

.ani1 {
  color: white;
  font-size: 30vw;
  line-height: 15.5vw;
  margin: 0;
  text-align: center;
  position: relative;
  animation-name: schriftanimation1;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.ani2 {
  color: white;
  font-size: 20vw;
  line-height: 15.5vw;
  margin: 0;
  text-align: center;
  position: relative;
  animation-name: schriftanimation2;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes schriftanimation1 {
  0% {font-variation-settings: "XOPQ" 100, "XTRA" 400, "OPSZ" 16, "GRAD" 0, "YTRA" 750, "CNTR" 0,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;}
  50% {font-variation-settings: "XOPQ" 900, "XTRA" 800, "OPSZ" 16, "GRAD" 20, "YTRA" 750, "CNTR" 0,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;
    letter-spacing: -4vw;}
  100% {font-variation-settings: "XOPQ" 900, "XTRA" 800, "OPSZ" 16, "GRAD" 20, "YTRA" 750, "CNTR" 0,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;
    letter-spacing: -5vw;
    line-height: 9vw;}
}

@keyframes schriftanimation2 {
  0% {font-variation-settings: "XOPQ" 900, "XTRA" 800, "OPSZ" 16, "GRAD" 20, "YTRA" 750, "CNTR" 0,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;}
  50% {font-variation-settings: "XOPQ" 100, "XTRA" 400, "OPSZ" 16, "GRAD" 0, "YTRA" 750, "CNTR" 0,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;
    letter-spacing: -4vw;}
  100% {font-variation-settings: "XOPQ" 100, "XTRA" 400, "OPSZ" 16, "GRAD" 0, "YTRA" 750, "CNTR" 0,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;
    letter-spacing: -5vw;
  line-height: 9vw;}
}