html {
    -ms-touch-action: none;
}

body, canvas, div {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
}

#GameDiv {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    background: #000;
}

#GameCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

#splash {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
    text-align: center;
}

#splash .progress-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    height: 8px;
    margin-left: -30%;
    margin-top: -4px;
    border-radius: 4px;
    background: #333;
    overflow: hidden;
}

#splash .progress-bar span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 4px;
    background: #3d5af1;
}
