/* animations.css */
.fade-in{animation:fadeIn 900ms ease both}
@keyframes fadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

.fade-in {
  opacity: 0;
  transform: translateY(6px);
}

.fade-in.visible {
  opacity: 1;
  transform: none;
  animation: fadeIn 900ms ease both;
}
