html, body {
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  background: rgb(f8,f8,f8);
  background: url('/noise-f8.png');
  color: rgb(64,64,64);
  overflow: hidden;
}
h1 {
  padding: 0;
  text-align: center;
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  font-family: 'Luckiest Guy';

  -webkit-animation-name: rotate;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;

  height: 2em;
  line-height: 2em;

  position: relative;
  top: 50%;
  margin-top: -1em;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform:rotate(-180deg);
  }
  50% {
    -webkit-transform:rotate(180deg);
  }
  100% {
    -webkit-transform:rotate(-180deg);
  }
}
