.falling-text {
  position: absolute;
  font-weight: bold;
  pointer-events: none;
  animation: fall linear forwards;
  z-index: 1000;
}

@keyframes fall {
  0% {
    top: -50px;
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 110vh;
    opacity: 0;
  }
}
