body {
    background: #003E59;
    margin: 0px 0px 0px 0px;
    background-repeat: repeat;
    user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-touch-callout: none !important;
}

#sbc_game_content {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    touch-action: none;
    user-select: none;
    box-shadow: 0 0 30px black;
}

#sbc_orientation {
    position: fixed;
    margin: 0px 0px 0px 0px;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url(../assets/orientation.jpg); 
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(0, 0, 0);
    z-index: 999;
    display: none;
    touch-action: none;
    user-select: none;
}

/* IE doesn't like transform - hack to patch selector for IE only */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   #sbc_game_content {
    margin-right: auto;
    transform: translate(0%, 0%);
    box-shadow: none;
    margin: 0 auto;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
   }
}
