@import url("https://fonts.googleapis.com/css?family=Monoton|Press+Start+2P|Rajdhani");
html {
  height: 100%;
}

body {
  background-color: #ff5dd4;
  background: -webkit-gradient(linear, left top, right bottom, from(#ff5dd4), to(#6fd0fb));
  background: linear-gradient(to bottom right, #ff5dd4, #6fd0fb);
  font-family: "Monoton", cursive;
  color: #fff;
  text-rendering: optimizeLegibility;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  -webkit-animation: Gradient 25s ease infinite;
  animation: Gradient 25s ease infinite;
}

a {
  color: #fff;
  text-decoration: none;
}

h1 {
  font-size: 10em;
  text-align: center;
  font-weight: normal;
}

.small {
  font-family: 'Rajdhani', sans-serif;
  font-size: .3em;
}

img {
  height: 600px;
  margin-left: 30px;
}

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

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

@media screen and (max-width: 1000px) {
  h1 {
    font-size: 4.8em;
    margin: 0 10px;
    text-align: center;
  }
  img {
    height: 300px;
  }
}

@media screen and (max-width: 500px) {
  h1 {
    font-size: 2em;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
  }
}
/*# sourceMappingURL=style.css.map */