: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;
  animation-name: kreisrot;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

#logokreisweiss {
  width: 36vw;
  height: 36vw;
  border-radius: 80vw;
  position: absolute;
  background-color: white;
  animation-name: kreisweiss;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

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


p {
  color: white;
  font-weight: 100;
  font-size: 20vw;
  text-align: center;
  position: relative;
  top: -2vw;
  animation-name: schriftanimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@keyframes schriftanimation {
  0% {font-variation-settings: "XOPQ" 27, "YOPQ" 135; letter-spacing: 2vw; font-size: 25vw;}
  100% {font-variation-settings: "XOPQ" 175, "YOPQ" 25; letter-spacing: 0; font-size: 20vw;}
}

@keyframes kreisrot {
  0% {transform: scaleX(1.05);}
  100% {transform: scaleX(0.95);}
}

@keyframes kreisweiss {
  0% {transform: scaleY(1.05);}
  100% {transform: scaleY(0.95);}
}

@keyframes kreisblau {
  0% {transform: scaleX(1.05);}
  100% {transform: scaleX(0.95);}
}