body { padding: 0; margin: 0; background: #2a2a2a; overflow: hidden}
#unity-container { position: absolute; width: 100vw; height: 100vh; }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%); width:100vw; height:100vh }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background: transparent; position: absolute; top: 0; left: 0 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
#unity-footer { position: relative }
.unity-mobile #unity-footer { 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-mobile-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
#videoContainer {     overflow: hidden; position:absolute; width: 100vw; height: 100vh; }
video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  /*Change this to change player background color*/
  /*background: #2a2a2a;*/

}

.pre-loader {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  display: none;
}

.pre-loader .title {
  color: #eee;
  letter-spacing: 0.1em;
}

.progress-bar {
  width: 40%;
  padding: 5px;
  background: #1a1a1a;
  box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
  border-radius: 18px;
}

.progress-bar .fill {
  background: #34c2e3;
  height: 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  line-height: 24px;
  overflow: hidden;
}