@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;
  transform: scaleY(2);
  animation: scaleAnimation 2s infinite alternate;
}

/* Animation Definition */
@keyframes scaleAnimation {
  0% {
    transform: scaleY(0.01); /* Startet bei der doppelten Höhe */
  }
  100% {
    transform: scaleY(3); /* Skaliert auf fast unsichtbar in der Höhe */
  }
}
