.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-in forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
