html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
}

#unity-container {
  width: 100vw;
  height: 100vh;
  background: #1a1a1a;
  position: relative;
}

#unity-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #1a1a1a;
}

#unity-loading-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#unity-logo {
  width: 308px;
  height: 260px;
  background: url('logo_blackBack.png') no-repeat center / contain;
  margin-bottom: 20px;
}

#unity-progress-bar-empty {
  width: 60%;
  max-width: 400px;
  height: 24px;
  border: 2px solid #0FF;
  box-sizing: border-box;
  position: relative;
  margin-top: 10px;
}

#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background-color: #0FF;
  transition: width 0.4s ease-out;
  position: absolute;
  top: 0; left: 0;
}

#progress-text {
  margin-top: 8px;
  font-size: 18px;
  color: #FFF;
}

#unity-footer {
  position: relative;
  z-index: 100;
}

.unity-mobile #unity-container,
.unity-desktop #unity-container,
.unity-mobile #unity-canvas,
.unity-desktop #unity-canvas {
  width: 100vw;
  height: 100vh;
}
