body { padding: 0; margin: 0 }
#unity-container { position: absolute }
#unity-container { left: 50%; top: 0%; transform: translate(-50%, 0%) }
#unity-canvas { 
    width: 100%;
    height: 100%;
    background: #231F20
 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-logo { display: none }
#unity-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

#unity-loading-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 20px;
  background-color: #333;
  border-radius: 10px;
  overflow: hidden;
}

#unity-progress-bar-empty {
  width: 100%;
  height: 100%;
  background-color: #333;
  position: absolute;
  z-index: 1;
}

#unity-progress-bar-full {
  height: 100%;
  background-color: #ffffff;
  width: 0%;
  transition: width 0.2s ease;
  z-index: 2;
}

#unity-footer { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo { display: none }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
