@keyframes scroll {
  0%   { top: 8px; opacity: 1; }
  50%  { top: 20px; opacity: 0.5; }
  100% { top: 32px; opacity: 0; }
}
.animate-scroll {
  animation: scroll 1.5s infinite;
}