* {
    box-sizing: border-box;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

h1 {
    font-family: arial;
    color: rgb( 11, 86, 117 );
}

body {
    background-image: url(bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: arial;
    margin: 0;
    padding: 0;
    background-color: rgb( 16, 16, 16 );
    color: rgb( 28, 78, 104 );
}

footer {
    font-family: arial;
    font-size: 12px;
    padding-left: 10px;
    position:absolute;
    bottom: 0;
    width: 100%;
}

/* Links */
a {
    text-decoration: none;
}
a:link {
    color: rgb( 233, 73, 154 );
}
a:visited {
    color: rgb( 110, 30, 71 );
}
a:hover {
    color: rgb( 252, 207, 230 );
}

/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
#canvas {
    padding-right: 0;
    display: display;
    border: 0px none;
    visibility: hidden;
}
