html,
body {
  height: 100%;
}

body {
  font-family: "Circular", hevetica, arial, sans-serif;
  background: linear-gradient(90deg, #ff4377, #0166ff);
  background-size: 150% 150%;
  -webkit-animation: gradient 15s ease infinite;
  -moz-animation: gradient 15s ease infinite;
  animation: gradient 15s ease infinite;
}

@font-face {
  font-family: "Circular";
  src: url("../webfont/lineto-circular-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: normal;
}

main {
  margin: 1em;
}

p {
  margin: 0 0 0.7em 0;
  color: #fff;
  font-size: 3.2em;
}

a {
  color: #fff;
}

@-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%;
  }
}

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