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

body {
  background-color: #e27ea6;
  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: kreisrotanimation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes kreisrotanimation {
  0% {background-color: #c60c30; border: 0.2vw solid #c60c30;}
  50% {background-color: transparent; border: 0.2vw solid #c60c30; filter: blur(0);}
  100% {background-color: transparent; border: 0.2vw solid #c60c30; filter: blur(0.5vw);}
}

#logokreisweiss {
  width: 36vw;
  height: 36vw;
  border-radius: 80vw;
  position: absolute;
  background-color: white;
  animation-name: kreisweissanimation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes kreisweissanimation {
  0% {background-color: white; border: 0.2vw solid white;}
  50% {background-color: transparent; border: 0.2vw solid white; filter: blur(0);}
  100% {background-color: transparent; border: 0.2vw solid white; filter: blur(0.5vw);}
}

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

@keyframes kreisblauanimation {
  0% {background-color: #00a1de; border: 0.2vw solid #00a1de;}
  50% {background-color: transparent; border: 0.2vw solid #00a1de; filter: blur(0);}
  100% {background-color: transparent; border: 0.2vw solid #00a1de; filter: blur(0.5vw);}
}


p {
  font-size: 18vw;
  font-weight: 750;
  font-variation-settings: "slnt" -10;
  text-align: center;
  position: relative;
  top: -2vw;
  animation-name: schriftanimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes schriftanimation {
  0% {color: white;
  text-shadow: 
  -0.2vw -0.2vw 0 white,
  0.2vw -0.2vw 0 white,
  -0.2vw  0.2vw 0 white,
  0.2vw  0.2vw 0 white;}
  100% {color: #e27ea6;
  text-shadow: 
  -0.2vw -0.2vw 0 white,
  0.2vw -0.2vw 0 white,
  -0.2vw  0.2vw 0 white,
  0.2vw  0.2vw 0 white;}
}

