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

* {
  box-sizing: border-box;
}

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

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

.back {
  position: absolute;
  top: 20px;
  left: 25px;
  padding: 20px 30px 20px 20px;
  transition: 200ms;
  z-index: 8;
}
.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;
  align-items: center;
  justify-content: center;
  background-color: antiquewhite;
  padding: 0 20px;
}

.titel {
  color: tomato;
  line-height: 0;
  font-variation-settings: 'wght' 450, 'wdth' 50;
  -webkit-text-stroke: 4px rgb(25, 106, 192);
  position: relative;
}

.essen {
  animation: 8000ms cubic-bezier(0.37, 0, 0.63, 1) fressen;
  animation-direction: normal;
  animation-iteration-count: infinite;
  position: relative;
  transform-origin: bottom;
  z-index: 3;
  } 


/* 
 .center {
animation: gefressen 3000ms cubic-bezier(0.85,0,0.15,1) infinite alternate;
}

.center-a {
  max-width: 40%;
  position: relative;
}
.center-b {
  width: 40%;
  display: flex;
  justify-content: end;
}

.titel {
  display: inline;
} */




@keyframes fressen {
  0% {
    font-variation-settings: 'yest' 100, 'grvt' 100;
    font-size: 20em;
    transform-origin: bottom;
    transform: scale(1);
    letter-spacing: normal;
  } 

  100% {

    font-variation-settings: 'yest' 1000, 'grvt' 1000;
    font-size: 20em;
    transform-origin: bottom;
    transform: scale(3);
    letter-spacing: -80px;

  }
}