@import url("https://fonts.googleapis.com/css2?family=Nabla:EDPT,EHLT@30..200,24&display=swap");
body {
  margin: 0;
  height: 100vh;
  display: grid;
  place-content: center;
  background-color: #000;
}

h1 {
  font-size: 12vw;
  font-family: Nabla;
}

@font-palette-values --Nabla {
  font-family: Nabla;
  base-palette: 2;
}
span {
  -webkit-animation: depth 1s ease-in-out alternate infinite;
          animation: depth 1s ease-in-out alternate infinite;
  position: relative;
  display: inline-block;
  font-variation-settings: "EDPT" 30;
  font-palette: --Nabla;
}
span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
span:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
span:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
span:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
span:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
span:nth-child(12) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes depth {
  0% {
    transform: translatex(0) translatey(0);
  }
  100% {
    font-variation-settings: "EDPT" 200;
    transform: translatex(0.15em) translatey(0.1em);
  }
}

@keyframes depth {
  0% {
    transform: translatex(0) translatey(0);
  }
  100% {
    font-variation-settings: "EDPT" 200;
    transform: translatex(0.15em) translatey(0.1em);
  }
}