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

html, body {
  margin: 0;
}


body {
  display: grid;
  background-color: whi;
  justify-items: center;
  align-items: center;
  transform: translateY(4vw);
}

.wrapper {
  position: relative;
  font-size: 24rem;
  display: flex;
  justify-content: center;
  font-family: 'CaraqueVF_Trial_WghtMelt';
  align-items: center;
  width: 200%;
  height: 100vh;
  transform: translateY(-10%);
}

.top {
  position: absolute;
  color:red;
  animation: topAnimation 3s infinite ease-in-out;
  mix-blend-mode: multiply;
}

.bottom {
  position: absolute;
  color: violet;
  animation: bottomAnimation 3s infinite ease-in-out; 
  animation-delay: 1s; 
  mix-blend-mode: multiply;
}

.middle {
  position: absolute;
  color: yellow;
  animation: bottomAnimation 3s infinite ease-in-out; 
  animation-delay: 2s; 
  mix-blend-mode: multiply;

}

@keyframes topAnimation {
  0%,
  100% {
    font-variation-settings: 'wght' 900, 'MELT' 1;
  }

  50% {
    font-variation-settings: 'wght' 900, 'MELT' 100;
    transform: translateY(2vh); font-size;
  }
}

@keyframes bottomAnimation {
  0%,
  100% {
    font-variation-settings: 'wght' 900, 'MELT' 1;
  }
  50% {
    font-variation-settings: 'wght' 900, 'MELT' 100;
    transform: translateY(-2vh);
  }
}