body {
  font-family: 'League Spartan', sans-serif;
  background: linear-gradient(90deg, rgba(1,74,173,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    background-size: 400% 400%;
    /* animation: gradient 15s ease infinite; */
    height: 100vh;
    color:white;
}

h1 {
  font-size: 4em;
}

p {
  font-size:1.5em;
}

.wrapper {
  display:flex;
  justify-content: center;
  align-items: center;
  align-content:center;
  flex-direction: column;
  height:100vh;
}

@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}