:root {
  font-family: 'Roboto Flex'; /* 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: 90%;
  width: 100%;
}


p {
  color: white;
  font-size: 60vh;
  line-height: 3vh;
  margin: 0;
  text-align: center;
  position: relative;
  animation-name: schriftanimation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}


@keyframes schriftanimation {
  0% {font-variation-settings: "wght" 100, "slnt" 0, "YTAS" 649, "YTDE" -202;}
  100% {font-variation-settings: "wght" 100, "slnt" -10, "YTAS" 854, "YTDE" -305;}
}
