/*
 * =========================================================================
 * Project             : WebGame01
 * Version             : 1.0.0
 * Author              : CK_WebProject
 * Template            : Unity WebGL PWA
 * Template Modified by : HwaHyang(Kim KangHyeon) <hwahyang@meowlabs.kr>
 * =========================================================================
 */

body {
    padding: 0;
    margin: 0
}

#game-container {
    position: fixed;
    width: 100%;
    height: 100%;
}
#game-canvas {
    width: 100%;
    height: 100%;
    background: #828282;
}

#game-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
#game-logo {
    height: 250px;
    content: url('intro.png');
}
#game-progress-bar-empty {
    margin-left: auto;
    margin-right: auto;
    width: 141px;
    height: 18px;
    margin-top: 10px;
    background: url('progress-bar-empty.png') no-repeat center;
}
#game-progress-bar-full {
    width: 0%;
    height: 18px;
    margin-top: 10px;
    background: url('progress-bar-full.png') no-repeat center;
}

#game-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
}
