﻿
body, html {
    width: 100%;
    height: 100%;
}


body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    margin: 0;
    padding: 0;
    font-family: Arial, Verdana, sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #0F1E20;
    background-color: #0F1E20;
    overflow: hidden;
    position:relative;
    
}

@-ms-viewport {
    width: 100%
}



noscript {
    background: red;
}


#content {
    image-rendering: -moz-crisp-edges;
    -webkit-interpolation-mode: nearest-neighbor;
    -ms-interpolation-mode:nearest-neighbor;
    -ms-touch-action: none;
    margin: 0px;
    padding: 0px;
    border: 0px;
    overflow-y: hidden;
    overflow-x: hidden;
    overflow: hidden;
  
}


/*#orientation {
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/play_landscape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(0, 0, 0);
    background-size: 100%;
    z-index: 999;
    display: none;
}*/




#spinner {
    margin: 60px auto;
    width: 60px;
    height: 60px;
    font-size: 10px;
    animation: rotate 1.4s infinite ease-in-out, background 1.4s infinite ease-in-out alternate;
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    margin-left: -3em;
    margin-top: -3em;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

@keyframes rotate {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
}

@keyframes background {
    0% {
        background-color: #EDE051;
    }

    50% {
        background-color: #75F2D2;
    }

    100% {
        background-color: #127D62;
    }
}
  


