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

html, body {
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.container {
  position: absolute;
  top: -100px;
  left: -30px;
 display: flex;
 flex-direction: column;

}
                
.element {
  font-family: 'CaraqueVF_Trial_WghtMelt';
  font-size: 40vh;
  color: white;
  font-weight: 1000;
  text-align: center;
  letter-spacing: -1.5rem; 
  line-height: 55%;


animation: vars 2s infinite ease-in-out;;
}

@keyframes vars {
  0%, 100% {
    font-variation-settings: "wght" 400, "MELT" 1;
  }
  50% {
    font-variation-settings: "wght" 1000, "MELT" 100;
  }
}



