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

body {
  display: flex;
  margin: 0;
  padding: 0;
  background-color: rgb(23, 0, 59);
}

p {
  font-family: 'Stinger', 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 antiquewhite;
  border-left: 4px solid antiquewhite;
  transform: rotate(-45deg);
}

.long-arrow-left::after{
  content: "";
  display: block;
  width: 4px;
  height: 45px;
  background-color: antiquewhite;
  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: 35em;
  
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  
}


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



.center {
text-align: center;
}

.unten {
  /* background-color: seagreen;  */
  width: 100%;
  height: calc(100%/3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.baustein, .titel {
  display: inline;
}


.mitte {
  /* background-color: goldenrod;  */
  width: 100%;
  height: calc(100%/3);
  padding-top: 2em;
  display: flex;
  justify-content: center;
  align-items: center;

}


.titel {
  color: tomato;
  font-size: 9em;
  line-height: 0.4;
  vertical-align: -20px;
  animation: 1400ms ease-in-out schrift;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-delay: 600ms;


}

.o, .u {
  overflow: hidden;
  align-self: center;
}

.baustein {
  align-self: center;
  animation: 1400ms ease-in-out baustein;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--animation-order) *100ms);

}

@keyframes schrift {
  from {font-variation-settings: 'wdth' 800, 'wght' 100;
    font-size: 11em;
    color: tomato;
    vertical-align: 24px;

  }
  to {font-variation-settings: 'wdth' 500, 'wght' 500;
    font-size: 9em;
    color: blueviolet;
    vertical-align: 24px;
  }
}

@keyframes baustein {
  
  from {
    font-variation-settings: 'wdth' 100, 'wght' 100;
    font-size: 13em;
    color: tomato;
    opacity: 1;
  }

  to {font-variation-settings: 'wdth' 100, 'wght' 500;
    font-size: 30em;
    color: blueviolet;
    opacity: 1;
  }
}





/*
@keyframes casualizer {
  from {font-variation-settings: 'slnt' 0, 'CASL' 0.1;
    font-weight: 900;
  }
  to {font-variation-settings: 'slnt' -13, 'CASL' 1;
    font-weight: 200;
  }
}

*/