/**
* This is a valid CSS file.
  **/
 @keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .animate-bounce-slow {
    animation: bounce-slow 8s ease-in-out infinite;
  }
  .animation-delay-700 {
    animation-delay: 700ms;
  }
  .hero-text {
      word-break: break-word;
  }
