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

h1{
color: red;
font-family: 'UTMorph-variable';
font-size: 32vw;
text-align: center;
margin: 0;
letter-spacing: .1rem;
transform: perspective(400px) translateZ(150px) rotateY(-30deg);
animation: turn 3s infinite alternate;
}


@keyframes turn {
  from { font-variation-settings: 'PSTV' 100, 'CRSV' 0; letter-spacing: -10px; transform: rotate(-0deg); }
  to {  font-variation-settings: 'PSTV' 1, 'CRSV' 0; transform: rotate(-365deg); text-align: center;}
}