body {
    padding: 0;
    margin: 0
}

#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: black;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#unity-logo {
    width: 326px;
    height: 188px;
    background: url('logo.png') no-repeat center;
    display: block;
    margin: 0 auto;
}

#unity-progress-bar-empty {
    margin-left: auto;
    margin-right: auto;
    width: 485px;
    height: 42px;
    margin-top: 10px;
    background: url('bar-empty.png') no-repeat center
}

#unity-progress-bar-full {
    width: 0%;
    height: 42px;
    margin-top: 10px;
    background: url('bar-full.png') no-repeat center
}

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

#unity-fullscreen-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center;
    background-size: contain;
    z-index: 1000;
    cursor: pointer;
}

#unity-exit-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    background: url('exit-button.png') no-repeat center;
    background-size: contain;
    z-index: 1000;
    cursor: pointer;
}

#loadingText {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: white;
}
