.wrapper {
  display: grid;
  grid-template-columns: repeat(8, 12.5%); 
  height: 14vh;
  text-align: center;
  font-family: "cheee-variable", sans-serif;
  font-size: 12rem;
  color: white;
  align-items: center;
  justify-items: center;
  animation: line1 5s infinite linear;
  background-color: red;
}




@keyframes line1 {
  0%, 100% {
    font-variation-settings: "GRVT" 400, "YEST" 900;
  }
  50% {
    font-variation-settings: "GRVT" 400, "YEST" 0;
    color: white;

  }
}
