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

body {
  display: grid;
  place-items: center;
  height: 100vh; 
  margin: 0;  
}

div {
  font-family: 'CaraqueVF_Trial_WghtMelt';
  font-size: 40rem;
  color: red;
  font-weight: bold;
  line-height: 0.00001;
  transform: scaleY(10);
  animation: scaleAnimation 2s infinite alternate;
}

@keyframes scaleAnimation {
  0% {
    transform: scaleY(0.01); 
  }
  100% {
    transform: scaleY(2); 
}
