﻿html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#unity-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    #unity-container.unity-mobile {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

#unity-canvas {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #231F20;
    width: 100%;
    height: 100%;
}

.unity-mobile #unity-canvas {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

#unity-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: url('PocketLoad.gif') no-repeat center;
    background-size: contain;
}

#loginGif {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    display: none;
    background: url('NormalLoad.gif') no-repeat center;
    background-size: contain;
}

