body {
    background-color: #0a0a0a;
    font-family: Helvetica, sans-serif;
  }

h1 {
  padding-top: 10%;
  text-align: center;
  font-size: 11rem;
  font-weight: 800;
  outline: none;
  background: linear-gradient(135deg, #5335cf 0%, #de005e 25%, #ffa35c 50%, #de005e 75%, #5335cf 100%);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  animation: animate 18s linear infinite;
}

p {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  /* margin-top: 1rem; */
}

@keyframes animate {
  to{
    background-position: 400%;
  }
}