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: #ccc;
    background: rgba(0, 0, 0, 1.00);
    position: relative;
    overflow:hidden;
}

#animation_container{
    background: rgba(0, 0, 0, 1.00);
    width:1280px;
    height:720px;
    margin: 0 auto;
}

#canvas {
    position: absolute;
    display: block;
    background: rgba(0, 0, 0, 1.00);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    margin: auto;
}

#popup-container {
    background-color: gray;
    position: absolute;
    display: none;
    z-index: 999;
    top: 40%;
    left: 15%;
    padding: 0;
    margin: auto;
    width: 500px;
    height: 100px;
}
#popup {
    display: none;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../../images/Tutorial.png);
    z-index: 999;
}

#tutorial {
    position: absolute;
    display: none;
    width: 100vw;
    height: 100vh;
    background-size:60%;
    background-image: url(../../images/background.png);
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    margin: auto;
}

#loader {
    width: 100%;
    height: 50px;
    position: absolute;
    text-align: center;
    margin-top: 250px;
    display: block;
}
#loader,
#loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}
#loader {
    margin: 60px auto;
    font-size: 10px;
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    margin-left: -5em;
    margin-top: -5em;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#orientation {
    width: 300px;
    height: 180px;
    position: absolute;
    top: 30%;
    left: 25%;
    background: url('../orientation/orientation.jpg') no-repeat;
    background-size: auto 100%;
    display: none;
}
