@font-face {
  font-family: 'UTMorph-variable';
  src: url('fonts/UTMorph-variable.woff2') format('woff2');
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.wrapper {
  display: grid;
  grid-template-columns: 25% 25%  25%  25% ;
  text-align: center;
  grid-template-rows: 200px 200px 200px 200px 200px;
  font-family: "cheee-variable", sans-serif;
  font-size: 6rem;
  animation: line1 4s infinite linear;
  color:red;

  align-items: center;
  justify-items: center; 
}



@keyframes line1 {
    0%, 100% {
      font-variation-settings: "GRVT" 989, "YEST" 0;
      font-size: 30rem;
    }
    50% {
      font-variation-settings: "GRVT" 0, "YEST" 989;
      font-size: 0rem;
      animation-delay: 1s;
    }
}


