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

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

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

#logokreisrot {
  width: 40vw;
  height: 40vw;
  border-radius: 80vw;
  position: absolute;
  background-color: #c60c30;
}

#logokreisweiss {
  width: 36vw;
  height: 36vw;
  border-radius: 80vw;
  position: absolute;
  background-color: white;
}

#logokreisblau {
  width: 34.5vw;
  height: 34.5vw;
  border-radius: 80vw;
  position: absolute;
  background-color: #00a1de;
  animation-name: kreis;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}


p {
  color: white;
  font-size: 18vw;
  text-align: center;
  position: relative;
  top: -2vw;
  animation-name: schriftanimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes schriftanimation {
  0% {font-variation-settings: "wght" 100, "slnt" 0;}
  100% {font-variation-settings: "wght" 1000, "slnt" -10;}
}

@keyframes kreis {
  0% {transform: scale(1.1);}
  100% {transform: scale(0.96);}
}