@font-face {
  font-family: "PressStart2P";
  src: url("../assets/fonts/PressStart2P-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "PressStart2P";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  font-size: 80px;
  background-color: #ff000024;
  color: #fff;
  text-shadow: 0 1px #000000cf, 0 2px #000000cf, 0 3px #000000cf, 0 4px #000000cf, 0 5px #000000cf,
    0 6px 0 transparent, 0 7px transparent, 0 8px transparent, 0 9px transparent,
    0 10px 10px rgba(0, 0, 0, 0.4);
}
.box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}
.box span {
  position: relative;
  top: 20px;
  display: inline-block;
  animation: bounce 0.5s ease infinite alternate;
}
@keyframes bounce {
  100% {
    top: -20px;
    text-shadow: 0 1px #ccc, 0 2px #ccc, 0 3px #ccc, 0 4px #ccc, 0 5px #ccc,
      0 6px #ccc, 0 7px #ccc, 0 8px #ccc, 0 9px #ccc,
      0 50px 25px rgba(0, 0, 0, 0.2);
  }
}
.box span:nth-child(1) {
    animation-delay: 0.1s;
}
.box span:nth-child(2) {
  animation-delay: 0.15s;
}
.box span:nth-child(3) {
  animation-delay: 0.2s;
}
.box span:nth-child(4) {
  animation-delay: 0.25s;
}
.box span:nth-child(5) {
  animation-delay: 0.3s;
}
.box span:nth-child(6) {
  animation-delay: 0.35s;
}
.box span:nth-child(7) {
  animation-delay: 0.4s;
}
