@font-face {
    font-family: "Sky Text";
    src: url(../assets/fonts/sky-medium.woff2);
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

body {
    touch-action: pan-y;
    font-family: "Sky Text", sans-serif;
}

h1 {
    color: white;
    text-shadow: 0 0 .1em rgba(0, 0, 0, .4);
    font-size: 3em;
}

.tap-to-place-container {
    transform: translateY(15vh);
}

.full-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.full-window.warning {
    pointer-events: all;
    background-color: rgba(0, 0, 0, .9);
}

.full-window.instructions {
    background-image: linear-gradient(to right, rgba(204, 46, 172, 0.5), rgba(255, 127, 36, 0.5));
}

.fade-container {
    opacity: 1;
    pointer-events: none;
    -moz-transition: opacity;
    -moz-transition-duration: 1s;
    -moz-transition-timing-function: ease-out;
    -webkit-transition: opacity;
    -webkit-transition-duration: 1s;
    -webkit-transition-timing-function: ease-out;
    transition: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-out;
}

.position-fix {
    transform: translate3d(0, 0, 0);
    z-index: 100;
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.warning-sprite {
    position: relative;
    display: block;
    margin: 0;
    max-width: 80vw;
    max-height: 80vh;
}

.instruction-sprite {
    position: relative;
    display: inline-block;
    margin: 0;
    max-width: 80vw;
    max-height: 80vh;
}

#loading {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: black;
    z-index: 999999;
}