:root {
    --var-base-delay: 150ms;
}

@font-face {
  font-family: "testi";
  src: url("testi17.ttf");
}





span.testi {
	
	  font-family: "testi", Times;
  




   font-weight: 50;
  font-size: 33vmin;
  font-variation-settings: "wght" 50, "wdth" 100;

    animation-name: wave;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
	
   
}



/* variable font animation */
@keyframes wave {
  0% {
    font-variation-settings: "wght" 50, "wdth" 100;
  }
  50% {
    font-variation-settings: "wght" 900, "wdth" 200;
  }
   100% {
    font-variation-settings: "wght" 50, "wdth" 100;
  }
}