@keyframes fade-in {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fade-in 2.5s ease-out;
}
