
  .font-cursive {
    font-family: 'Dancing Script', cursive;
  }

  #menu a {
    transition: all 0.5s ease;
    transform: translateY(1rem);
    opacity: 0;
  }
  #menu a.opacity-100 {
    transform: translateY(0);
    opacity: 1;
  }
  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .animate-spin-slow {
    animation: spin-slow 8s linear infinite;
  }

  @media (max-width: 768px) {
    .mobile-stack .stack-img {
      transform: translateY(100px);
      opacity: 0;
    }
  }
  
  
  
  
