html,
body {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 8pt;
}
body {
    opacity: 0;
    overflow: hidden;
}
body.error {
    opacity: 1;
}
body.error p {
    text-align: center;
}
body #controls {
    display: inline-block;
    position: fixed;
    bottom: 0;
    padding: 10px;
    margin: auto;

    background: rgba(0, 0, 0, 0.75);
    border-radius: 0px 20px 0px 0px;
    -moz-border-radius: 0px 20px 0px 0px;
    -webkit-border-radius: 0px 20px 0px 0px;
    border-top: 3px solid;
    border-right: 3px solid;
    border-color: #402;

    text-align: center;
}
h1{
	font-size: 1.5em;
	padding: 0;
	margin: 0;
}


a {
    color: #F0B;
    text-decoration: none;
}
a:visited {
    color: #CCC;
}
a:hover {
    text-decoration: underline;
    color: #402;
}
a:active {
    text-decoration: underline;
    color: #204;
}
#fullscreen {
    width: 32px;
    height: 32px;
    background: none;
    background-image: url('../assets/fullscreen.png');
    background-size: 100% 100%;
    background-position: center center;
    float: right;
    margin: 10px;
    cursor: pointer;
}
#fullscreen:hover {
    opacity: 0.5;
}
#fullscreen:active {
    opacity: 0.25;
}


/* style for disabling controls */
body.error #controls {
    opacity: 0.5;
    cursor: not-allowed;
}
body.error #controls > * {
    pointer-events: none;
}