: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: 40vh;
  height: 40vh;
  border-radius: 80vh;
  position: absolute;
  background-color: #c60c30;
  animation-name: kreisanimation;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;

}

#logokreisweiss {
  width: 36vh;
  height: 36vh;
  border-radius: 80vh;
  position: absolute;
  background-color: white;
  animation-name: kreisanimation;
  animation-duration: 2s;
  animation-delay: 0.8s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;

}

#logokreisblau {
  width: 34.5vh;
  height: 34.5vh;
  border-radius: 80vh;
  position: absolute;
  background-color: #00a1de;
  animation-name: kreisanimation;
  animation-duration: 2s;
  animation-delay: 0.6s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;

}


p {
  color: white;
  font-size: 80vh;
  line-height: 0vh;
  font-weight: 120;
  font-variation-settings: "slnt" -10;
  text-align: center;
  margin: 0 0 15vh 0;

}

.buchstabeC {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vh;
  height: 40vh;
  position: absolute;
  animation-name: schriftanimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: backwards;
}

.buchstabeT {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vh;
  height: 40vh;
  position: absolute;
  animation-name: schriftanimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-fill-mode: backwards;

}

.buchstabeA {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vh;
  height: 40vh;
  position: absolute;
  animation-name: schriftanimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-fill-mode: backwards;

}



@keyframes schriftanimation {
  0% {transform: translateY(-20vh);}
  100% {transform: translateY(20vh);}
}

@keyframes kreisanimation {
  0% {transform: translateY(-20vh);}
  100% {transform: translateY(10vh);}
}