div#gameContainer {
    background: transparent !important;
    position: absolute;
    z-index: 999;
}

div#gameContainer canvas {
    position: absolute;
}

div#gameContainer canvas[data-pixel-art="true"] {
    position: absolute;
    image-rendering: optimizeSpeed;
    image-rendering: -webkit-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

.game {
    min-height: 75vh;
    display: flex;
    align-items: center;
    max-height: 950px;
    position: relative;
}

.navbar-item img {
    image-rendering: pixelated;
}

.button.is-info {
    color: #f0f0f0;
}

.is-size-c {
    font-size: 0.85rem;
}

#gameContainer .overlay {
    position: absolute;
    animation-name: showExpand;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 4s;
    opacity: 0;
    bottom: 0;
    right: 0;
}

#gameContainer .overlay .controls {
    margin: 20px;
}

#gameContainer .overlay .controls .button:nth-child(1) {
    cursor: default;
}

#gameContainer .overlay .controls .button:nth-child(2) {
    width: 55px;
    margin-left: 10px;
}

.game.fullScreen {
    margin: 0;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: #221024;
    z-index: 9999;
    display: flex;
    max-height: none;
}

@keyframes showExpand {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

body {
    background: #221024;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    background: #221024;
}

.is-secondary-color {
    color: #d1beb1;
}

.is-orange-color {
    color: #fc9a56;
}

.max-height-4 {
    max-height: 4rem;
}

@media screen and (max-width: 1023px) {
    .container.legal {
        padding: 0 0.85rem;
    }
}

.game .loading {
    bottom: 30px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    z-index: 1;
	width: 80%;
    max-width: 600px;
 }