:root {
  font-size: 100%;
  font-family: 'Recursive'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  display: flex;
  margin: 0;
  padding: 0;
}

p {
  font-family: 'Obviously', Helvetica, sans-serif;

}

.back {
  position: absolute;
  top: 20px;
  left: 25px;
  z-index: 8;
  padding: 20px 30px 20px 20px;
  transition: 200ms;
}
.back:hover {
  transform: translateX(-10px);
  transition: 200ms;
}
.long-arrow-left{
  display: block;
  width: 25px;
  height: 25px;
  border-top: 4px solid #000;
  border-left: 4px solid #000;

}
.long-arrow-left{
 transform: rotate(-45deg);
}
.long-arrow-left::after{
  content: "";
  display: block;
  width: 4px;
  height: 45px;
  background-color: black;
  transform: rotate(-45deg) translate(15px, 4px);
  left: 0;
  top: 0;
}

h1 {
  font-size: 2em;
  color: tomato;
  font-weight: 900;
  margin: auto;

}



.baustein {
  color: tomato;
  font-size: 24em;

  
}

.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color:rgb(126, 4, 61);
  
}

.oben, .oben-mitte, .mitte, .mitte-unten, .unten {
  /* background-color: cornflowerblue; */
  width: 100%;
  height: calc(100%/3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
}


.oben {
  top: 0;
}

.oben-mitte {
  top: 16.666%;
}

.mitte {
  top: 33.333%;

}

.mitte-unten {
  top: 49.9%;
}

.unten {
  bottom: 0;
}


.baustein, .titel {
  display: inline;
}




.titel {
  color: tomato;
  font-size: 6rem;
  vertical-align: 50px;
}

.o, .u, .m, .om, .mu {
  animation: 5s cubic-bezier(0.83, 0, 0.17, 1) drehen;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--animation-order)*200ms);
}

p {
  animation: 5s cubic-bezier(0.83, 0, 0.17, 1) farbe;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--animation-order)*200ms);
}



@keyframes farbe {
  0% {
    color: tomato;
  }

  50% {
    color: rgb(142, 5, 69);
  }

  100% {
    color: tomato;
  }
}

@keyframes drehen {
  0% {
    transform: rotate(0deg);
    font-variation-settings: 'wght' 250, 'wdth' 70;
  }

  50% {
    font-variation-settings: 'wght' 600, 'wdth' 70;
  }

  100% {
    transform: rotate(360deg);
    font-variation-settings: 'wght' 250, 'wdth' 70;
  }
}
