@CHARSET "UTF-8";
html, body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #fff;

    font-size: 20px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    background: #000;
}
#gameCanvas {
    width: 100%;
    height: 100%;
    touch-action: none;
}
#stats {
    position: fixed;
    right: 0px;
    bottom: 0px;
    color: red;
    z-index: 1;
}
#hud, #menu {
    position: fixed;
    top: 0px;
    right: 0px;
    color: #00e7ff;
    z-index: 1;
    font-size: 40px;
    white-space: nowrap;
    font-weight: bold;
}
#hud span {
    padding: 0 20px 0 0px;
}
#hud-score:before {
    content: 'Score: ';
    font-weight: normal;
    font-size: 30px;
}
#hud-levels:before {
    content: 'Levels: ';
    font-weight: normal;
    font-size: 30px;
}