body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-attachment: fixed;
  background-size: 100% 100%;
  overflow: hidden;
  font-family: "Bodoni Moda", serif;
  -webkit-font-smoothing: antialiased;
}


h1 {
  cursor: default;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

h1 span {
  position: relative;
  display: inline-block;
  animation: bounce 0.6s ease infinite alternate;
  font-size: 160px;
  color: #fcbd00;
  text-shadow: 0 1px 0 #fcbd00, 0 2px 0 #fcbd00, 0 3px 0 #fcbd00, 0 4px 0 #fcbd00,
    0 5px 0 #fcbd00, 0 6px 0 transparent, 0 7px 0 transparent, 0 8px 0 transparent,
    0 9px 0 transparent, 0 10px 10px rgba(0, 0, 0, 1);
}

h1 span:nth-child(1) { animation-delay: 0s; }
h1 span:nth-child(2) { animation-delay: 0.1s; }
h1 span:nth-child(3) { animation-delay: 0.2s; }
h1 span:nth-child(4) { animation-delay: 0.3s; }
h1 span:nth-child(5) { animation-delay: 0.4s; }
h1 span:nth-child(6) { animation-delay: 0.5s; }
h1 span:nth-child(7) { animation-delay: 0.6s; }
h1 span:nth-child(8) { animation-delay: 0.7s; }
h1 span:nth-child(9) { animation-delay: 0.8s; }
h1 span:nth-child(10) { animation-delay: 0.9s; }
h1 span:nth-child(11) { animation-delay: 1s; }
h1 span:nth-child(12) { animation-delay: 1.1s; }
h1 span:nth-child(13) { animation-delay: 1.2s; }
h1 span:nth-child(14) { animation-delay: 1.3s; }
h1 span:nth-child(15) { animation-delay: 1.4s; }
h1 span:nth-child(16) { animation-delay: 1.5s; }
h1 span:nth-child(17) { animation-delay: 1.6s; }
h1 span:nth-child(18) { animation-delay: 1.7s; }
h1 span:nth-child(19) { animation-delay: 1.8s; }
h1 span:nth-child(20) { animation-delay: 1.9s; }
h1 span:nth-child(21) { animation-delay: 2s; }


@keyframes bounce {
  0% {
      top: 0;
      font-variation-settings: 'wght' 400, 'opsz' 96;
      text-shadow: 0 1px 0 #fcbd00, 0 2px 0 #fcbd00, 0 3px 0 #fcbd00, 0 4px 0 #fcbd00,
      0 5px 0 #fcbd00, 0 6px 0 transparent, 0 7px 0 transparent, 0 8px 0 transparent,
      0 9px 0 transparent, 0 10px 10px rgba(0, 0, 0, 0.4);
  }
  100% {
      top: -20px;
      font-variation-settings: 'wght' 900, 'opsz' 96;
      text-shadow: 0 1px 0 #fcf800, 0 2px 0 #fcf800, 0 3px 0 #fcf800, 0 4px 0 #fcf800,
      0 5px 0 #fcf800, 0 6px 0 #fcf800, 0 7px 0 #fcf800, 0 8px 0 #fcf800, 0 9px 0 #fcf800,
      0 50px 25px rgba(0, 0, 0, 0.2);
  }
}
