: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;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: rgb(23, 23, 23);
}



.center {
text-align: center;
overflow: hidden;
justify-self: flex-end;
}


.baustein, .titel {
  display: inline;
}


.mitte {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



.titel {
  color: tomato;
  font-size: 13em;
  line-height: 1;
  animation: 1300ms cubic-bezier(0.83, 0, 0.17, 1) schrift;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--animation-order) * 300ms); 

}

/* .center {
  animation: 1300ms cubic-bezier(0.83, 0, 0.17, 1) rotation;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--animation-order) * 300ms); 
}


@keyframes rotation {
  from {
    transform: rotate3d(0, 0, 0, 0deg);

  }
  to {
    transform: rotate3d(1, 0, 0.5, 80deg);
  }
} */


@keyframes schrift {
  from {font-variation-settings: 'wdth' 130, 'wght' 800;
    font-size: 18em;
    color: rgb(255, 189, 177);

  }
  to {font-variation-settings: 'wdth' 130, 'wght' 300;
    font-size: 18em;
    color: tomato;
  }
}






/*
@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;
  }
}

*/