html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #000;
}
#unity-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
#unity-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 260px;
}
#unity-logo {
  width: 260px;
  height: 220px;
  background: url('unity-logo-dark.png') no-repeat center;
  background-size: contain;
}
#unity-progress-bar-empty {
  width: 141px;
  height: 18px;
  margin: 10px auto 0;
  background: url('progress-bar-empty-dark.png') no-repeat center;
}
#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 0;
  background: url('progress-bar-full-dark.png') no-repeat center;
}
#unity-footer,
#unity-logo-title-footer,
#unity-build-title,
#unity-fullscreen-button {
  display: none !important;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
