: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-hinten {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  filter: blur(2vw);
}

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


span {
  color: white;
  font-size: 30vw;
  line-height: 18vw;
  margin: 0;
  text-align: center;
  position: relative;
  animation-name: schriftanimation;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: backwards;
}

.verzoegerung1 {
  animation-delay: 0.5s;
}

.verzoegerung2 {
  animation-delay: 1s;
}

.verzoegerung3 {
  animation-delay: 1.5s;
}

.verzoegerung4 {
  animation-delay: 2s;
}

.verzoegerung5 {
  animation-delay: 2.5s;
}

.verzoegerung6 {
  animation-delay: 3s;
}


@keyframes schriftanimation {
  0% {font-variation-settings: "wght" 100, "wdth" 25;
  color: white;}
  50% {color: #00a1de;}
  100% {font-variation-settings: "wght" 500, "wdth" 151;
  color: #522398; filter: blur(1vw);}
}