h2 > span {
  display: inline-block;
  animation: letterPop 2s steps(2) infinite;
}
h2 {
  margin-left: -20px;
}

h2 > span:nth-child(1) {
  animation-delay: 0.06s;
}

h2 > span:nth-child(2) {
  animation-delay: 0.12s;
}

h2 > span:nth-child(3) {
  animation-delay: 0.18s;
}

h2 > span:nth-child(4) {
  animation-delay: 0.24s;
}

h2 > span:nth-child(5) {
  animation-delay: 0.3s;
}

h2 > span:nth-child(6) {
  animation-delay: 0.36s;
}

h2 > span:nth-child(7) {
  animation-delay: 0.42s;
}

h2 > span:nth-child(8) {
  animation-delay: 0.48s;
}

h2 > span:nth-child(9) {
  animation-delay: 0.54s;
}

h2 > span:nth-child(10) {
  animation-delay: 0.6s;
}

h2 > span:nth-child(11) {
  animation-delay: 0.66s;
}

h2 > span:nth-child(12) {
  animation-delay: 0.72s;
}

h2 > span:nth-child(13) {
  animation-delay: 0.78s;
}

h2 > span:nth-child(14) {
  animation-delay: 0.84s;
}

h2 > span:nth-child(15) {
  animation-delay: 0.9s;
}

h2 > span:nth-child(16) {
  animation-delay: 0.96s;
}

h2 > span:nth-child(17) {
  animation-delay: 1.02s;
}

h2 > span:nth-child(18) {
  animation-delay: 1.08s;
}

h2 > span:nth-child(19) {
  animation-delay: 1.14s;
}

h2 > span:nth-child(20) {
  animation-delay: 1.2s;
}

h2 > span:nth-child(21) {
  animation-delay: 1.26s;
}

h2 > span:nth-child(22) {
  animation-delay: 1.32s;
}

h2 > span:nth-child(23) {
  animation-delay: 1.38s;
}

h2 > span:nth-child(24) {
  animation-delay: 1.44s;
}

h2 > span:nth-child(25) {
  animation-delay: 1.5s;
}

h2 > span:nth-child(26) {
  animation-delay: 1.56s;
}

h2 > span:nth-child(27) {
  animation-delay: 1.62s;
}

h2 > span:nth-child(28) {
  animation-delay: 1.68s;
}

h2 > span:nth-child(29) {
  animation-delay: 1.74s;
}

h2 > span:nth-child(30) {
  animation-delay: 1.8s;
}

h2 > span:nth-child(31) {
  animation-delay: 1.86s;
}

h2 > span:nth-child(32) {
  animation-delay: 1.92s;
}

h2 > span:nth-child(33) {
  animation-delay: 1.98s;
}

h2 > span:nth-child(34) {
  animation-delay: 2.04s;
}

h2 > span:nth-child(35) {
  animation-delay: 2.1s;
}

h2 > span:nth-child(36) {
  animation-delay: 2.16s;
}
@keyframes letterPop {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-8px);
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=letters.css.map */
