@tailwind base;
@tailwind components;
@tailwind utilities;

@keyframes fadeInUp{
  from{opacity:0;transform:translateY(-50px)}
  to{opacity:1;transform:translateY(0)}
}
.animate-fadeInUp{animation:fadeInUp .8s ease-out .2s both}

@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 2s infinite;
}

