body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #231F20;
}

#unity-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#unity-container.unity-desktop,
#unity-container.unity-mobile {
  width: 100vw;
  height: 100vh;
  transform: none;
}

#unity-canvas {
  background: #231F20;
  width: 100vw;
  height: 100vh;
}

#unity-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #231F20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#unity-logo {
  width: 154px;
  height: 130px;
  background: url('unity-logo-dark.png') no-repeat center;
  background-size: contain;
}

#unity-progress-bar-empty {
  width: 80%;
  max-width: 400px;
  height: 18px;
  margin-top: 20px;
  background: url('progress-bar-empty-dark.png') no-repeat center;
  background-size: 100% 100%;
}

#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background: url('progress-bar-full-dark.png') no-repeat center;
  background-size: 100% 100%;
  transition: width 0.3s ease;
}

#unity-footer {
  position: relative;
}

.unity-mobile #unity-footer {
  display: none;
}

#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background: url('webgl-logo.png') no-repeat center;
  background-size: contain;
}

#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: white;
}

#unity-fullscreen-button {
  cursor: pointer;
  float: right;
  width: 38px;
  height: 38px;
  background: url('fullscreen-button.png') no-repeat center;
  background-size: contain;
}

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