@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

  .Header {
     font-family: "Poppins", sans-serif;
    font-size: 38px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(
      270deg,
      #00ffcc,
      #0066ff,
      #00ffcc
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 16s ease infinite ;
 
    letter-spacing: 3px;
  }

  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
