body {
    font-family: "Roboto", "Droid Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2ecc71;
    color: #111111;
    text-align: center;
}

.footer {
    font-size: 0.8em;
    text-align: center;
}

.emscripten {
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    vertical-align: middle;
}

div.emscripten {
    text-align: center;
}

div.emscripten_border {
    /*border-top: 1px solid black;*/
}

/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
canvas.emscripten {
    border: 0px none;
    background-color: black;
}

.spinner {
    height: 30px;
    width: 30px;
    margin: 20px 0 0 20px;
    display: inline-block;
    vertical-align: top;

    -webkit-animation: rotation .8s linear infinite;
    -moz-animation: rotation .8s linear infinite;
    -o-animation: rotation .8s linear infinite;
    animation: rotation 0.8s linear infinite;

    border: 5px solid #FFFFFF;
    border-top-color: #000000;

    border-radius: 100%;
    background-color: #2ecc71;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#status {
    display: inline-block;
    vertical-align: top;
    margin-top: 30px;
    margin-left: 20px;
    font-weight: bold;
    color: #000000;
}

#progress {
    height: 20px;
    width: 30px;
}

#controls {
    display: inline-block;
    float: right;
    vertical-align: top;
    margin-top: 30px;
    margin-right: 20px;
    text-align: center;
}

#output {
    width: 100%;
    height: 200px;
    margin: 10px auto 0;
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
    background-color: black;
    color: white;
    font-family: "Lucida Console", Monaco, monospace;
    outline: none;
}
