.help {
  animation: spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9);
}

.help {
  position: fixed;
  top: 80%;
  left: 50%;
  font-size: larger;
  translate: -50% -50%;
}

@keyframes spin {
  0% {
    top: 40%;
  }

  25% {
    top: 60%;
    color: transparent;
  }

  50% {
    top: 70%;
  }

  75% {
    top: 70%;
    color: rgba(240, 248, 255, 0.464);
  }

  100% {
    top: 80%;
    color: rgba(255, 255, 255, 0.272);
  }
}
