

body {
  display: grid;
  justify-items: center;
  align-items: center;
  transform: translateY(16vw)
}

h1,
.center {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

h1 {
  font-family: "cheee-variable", sans-serif;
  font-size: 24rem;
  color: white;
  font-weight: 1000;
  text-align: center;
  line-height: 0.1%;
  animation: vars 2s infinite linear;
  z-index: 0; /* vorne */
}

@keyframes vars {
  0%,
  100% {
    font-variation-settings: "GRVT" 989, "YEST" 0;
  }
  50% {
    font-variation-settings: "GRVT" 0, "YEST" 989;
  }
}



