#messages {/*
    width: 60%;
    margin: 50px auto;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    min-height: 100px;*/
  }
  
  #messages p {
    display: none;
  }
  

  /* cv gen */
  
  /* RTL adjustments if needed */
  textarea {
    font-size: 1rem;
    line-height: 1.5;
}


@keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    @keyframes pulse-slow {
      0%, 100% { opacity: 0.8; }
      50% { opacity: 0.6; }
    }

    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .animate-float {
      animation: float 6s ease-in-out infinite;
    }

    .animate-float-delay {
      animation: float 7s ease-in-out 1s infinite;
    }

    .animate-pulse-slow {
      animation: pulse-slow 4s ease-in-out infinite;
    }

    .animate-spin-slow {
      animation: spin-slow 12s linear infinite;
    }

    .bg-funky-pattern {
      background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
      background-size: 30px 30px;
    }