@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg));
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(var(--rotate, 0deg));
  }
}

.reveal {
  animation: fadeUp 0.7s ease both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
