html {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    background-color: #000;
    position: relative;
    margin: 0px;
    padding: 0px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;

    -ms-user-select: none;
    -ms-touch-select: none;
    -ms-touch-action: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-focus-ring-color: rgba(0, 0, 0, 0);
    user-select: none;

    -webkit-touch-callout: none;
    -webkit-focus-ring-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: auto;

    -o-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}
* {
    margin: 0;
    padding: 0;
}

#gameLoader {
    position: absolute;
    left: 45%;
    top: 50%;
    -o-transform: translate(-50%, 0);
    -o-transform: scale(2);
    -ms-transform: translate(-50%, 0);
    -ms-transform: scale(2);
    -moz-transform: translate(-50%, 0);
    -moz-transform: scale(2);
    -webkit-transform: translate(-50%, 0);
    -webkit-transform: scale(2);
    transform: translate(-50%, 0);
    transform: scale(2);
}
