body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#unity-container {
    background-size: 120%;
    width: 100%;
    height: 100vh;
    background-color: #000;
}

#unity-canvas {
    width: 100%;
    height: 100vh;
    background-size: 120%;
}

#loading-bar {
    position: absolute;
    left: 0;
    bottom: -64px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

@keyframes loading {
  0 {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#icon 
{
    position: absolute;
    margin-bottom: 300px;
    width: 200px;
    height: 200px;
    background: url(favicon.png) center no-repeat;
    background-size: contain;
}

#progress-bar-empty {
    width: 200px;
    height: 2px;
    background-color: gray;
}

#progress-bar-full {
    width: 0%;
    height: 2px;
    background-color: orange;
}

#progress-bar-arrow {
    display: none;
    position: relative;
    margin-left: auto;
    top: -16px;
    left: 16px;
    width: 32px;
    height: 32px;
    /*background: url('stonePrew.png') no-repeat center;
    background-size: contain;*/
    animation: loading 2s linear infinite;
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}

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

#version-label {
    position: absolute;
    left: 2vw;
    bottom: 2.85vw;
    color: #A9A9A9;

    font-family: fantasy;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}
