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


p {
  color: white;
  font-weight: 750;
  font-size: 70vw;
  line-height: 13vw;
  margin: 0;
  text-align: center;
  position: relative;
  animation-name: schriftanimation1;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}


@keyframes schriftanimation1 {
  0% {font-variation-settings: "wght" 1000, "slnt" 0;
    letter-spacing: -2vw;}
  50% {font-variation-settings: "wght" 100, "slnt" 0;}
  100% {font-variation-settings: "wght" 100, "slnt" -10;}
}