@font-face {
  font-family: 'WHOA-Spine';
  src: url('fonts/WHOA-Spine-v0.4.1.woff2') format('woff2');
}

html, body {
  margin: 0;
  background-color: red;
}


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

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

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


@keyframes topAnimation {
  0%,
  100% {
    font-variation-settings: 'hrzn' -1000, 'vert' -1000, 'rota' -45, 'zoom' -1000;
  }

  50% {
    font-variation-settings: 'hrzn' 1000, 'vert' 1000, 'rota' 45, 'zoom' 1000;
    transform: translateY(6vh); font-size;
  }
}