html, body{
    height: 100%;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
}


#canvas{
    width: 100%;
    height: 100%;
}

canvas { 
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated;                 /* Chrome                         */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

}

#fpsMeter{
    position: absolute;
    left: 0;
    top: 0;
    margin: 3px;
    color: #f00;
    font-family: monospace;
    background: black;
}

#helper{
    position: absolute;
    left: calc(50% - 400px / 2);
    width: 400px;
    top: 0;
    margin: 3px;
    color: #f00;
    background: black;
    font-family: monospace;
    text-align: center;
    font-size: x-large;
}

#console{
    position: absolute;
    right: 0;
    top: 0;
    margin: 3px;
    color: #f00;
    background: black;
    font-family: monospace;
}