@font-face {
  font-family: Free Pixel;
  src: url("FreePixel.ttf");
}

#container {
  width: 1000px;
  margin: auto;
}

html, body {
  background-color: #000;
  color: #fff;
  font-family: Free Pixel;
  font-size: 12pt;
}

#bg {
  width: 200px;  
}

a {
  color: #fff;
  animation: none;
}

@keyframes blink {
  50% {
    color: #000;  
  }  
}

a:hover {
  animation: blink 0.1s linear infinite;  
}

#paw {
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 5px;
}

#stars {
  width: 1000px;
  height: 50px;
  background-image: url("stars.gif");
  background-repeat: repeat-x;
  margin-top: 50px;
}