/* Mobile menu animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 16, app/assets/stylesheets/application.scss */
.animate-fade-in {
  animation: fadeIn 0.2s ease-out;
}
