@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,600,800');
@import url('https://fonts.googleapis.com/css?family=Martel+Sans:200,400,800');
@import url('https://fonts.googleapis.com/css?family=Biryani:200,300,400,600,800');
@import url('https://fonts.googleapis.com/css?family=Exo+2:400,100');

body {
  padding: 0;
  background: #000119;
}

h1 {
  font-size: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  margin-top: 0px;
  text-transform: uppercase;
  /* Warning: no fallback */
  background: -webkit-linear-gradient(1092deg, #09f1b8, #00a2ff, #ff00d2, #fed90f);
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
  color: #000119;
  animation: gradient 5s ease infinite;
  -webkit-animation: gradient 5s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-o-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-ms-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }

}