: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: 100%;
  width: 100%;
}


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

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

@keyframes schriftanimation1 {
  0% {font-variation-settings: "wght" 100, "wdth" 25;}
  100% {font-variation-settings: "wght" 500, "wdth" 151;}
}

@keyframes schriftanimation2 {
  0% {font-variation-settings: "wght" 500, "wdth" 151;}
  100% {font-variation-settings: "wght" 100, "wdth" 25;}
}