@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes stat-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.35);
  }
  50% {
    box-shadow: 0 0 0 0.5rem rgba(14, 165, 233, 0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.65s ease-out both;
}

.animate-stat-glow {
  animation: stat-glow 2.4s ease-in-out infinite;
}

.is-in-view {
  animation: fade-in-up 0.7s ease-out both;
}
