html,
body {
    height: 100%;
    margin: 0;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-shadow:
        0 0 1px rgb(0, 0, 0),
        0 0 1px rgb(0, 0, 0),
        0 0 2px rgb(0, 0, 0),
        0 0 1px rgb(0, 255, 200),
        1px 1px 1px rgb(0, 255, 200),
        -1px 1px 1px rgb(0, 255, 200),
        -1px -1px 1px rgb(0, 255, 200),
        1px -1px 1px rgb(0, 255, 200),
        1px 1px 8px rgb(0, 255, 200),
        -1px 1px 8px rgb(0, 255, 200),
        -1px -1px 8px rgb(0, 255, 200),
        1px -1px 8px rgb(0, 255, 200);
    position: relative;
}

a {
    color: rgb(255, 255, 255);
}

/* Scale canvas with resize attribute to full size */
canvas[resize] {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-width: 0;
}

.info {
    position: absolute;
    margin: 1em 2em;
    padding: 0 0.5em;
    background-color: rgba(0, 0, 50, 0.2);
    /*TODO add box-shadow for smoother border..*/
    /*box-shadow: */
}
