﻿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;
}


noscript {
    background: red;
}


canvas {
    image-rendering: optimizeSpeed;
    -webkit-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 {
    border: 5px solid #75F2D2;
    border-radius: 60px;
    height: 120px;
    left: 50%;
    margin: -60px 0 0 -60px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 120px;
    animation: rotate 1s ease-out,background 1s infinite ease-in-out alternate;
    animation-iteration-count: infinite;
}

@keyframes rotate {
    0% {
        transform: scale(.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes background {
    0% {
        border: 5px solid #EDE051;
    }

    50% {
        border: 5px solid #75F2D2;
    }

    100% {
        border: 5px solid #127D62;
    }
}


