* {
    box-sizing: border-box;
}

h1 {
    font-family: arial;
    color: rgb( 234, 225, 240 );
}

canvas {
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	min-width: 100%;
	min-height: 100%;
}

body {
    /*background-image: url(bg.png);*/
    background-repeat: no-repeat;
    font-family: arial;
    margin: 0;
    padding: none;
    background-color: rgb( 29, 28, 31 );
    color: rgb( 234, 225, 240 );
}

footer {
    font-family: arial;
    font-size: 12px;
    padding-left: 10px;
    position:absolute;
    bottom: 0;
    width: 100%;
}

/* 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;
}
