@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Righteous', cursive;
  font-size: 20vmin;
  background: #EDDDD4;
}
.gradient {
  background-image: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 25%, rgba(252,176,69,1) 50%, rgba(253,29,29,1) 75%, rgba(131,58,180,1) 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-size: 200%;
  background-position: 0 0;
  
  animation: move 7s linear infinite;
}

@keyframes move {
  to {
    background-position: 200%;
  }
}