body {
  padding: 0;
  margin: 0;
}
#unity-container {
  position: fixed;
  width: 100%;
  height: 100%;
}
#unity-canvas {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 249, 71, 0.32) 0%,
    rgba(255, 255, 255, 1) 31%,
    rgba(0, 0, 0, 0.25) 100%
  );
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-logo {
  width: 500px;
  height: 200px;
  background: url("loading-logo.png") no-repeat center;
  background-size: contain;
}
#unity-progress-bar-empty {
  margin: 10px auto 0;
  width: 300px;
  height: 15px;
  background: rgb(0, 0, 0) border-box, #000000 padding-box;
  border: 2px solid grey;
  box-sizing: border-box;
  background-clip: border-box, padding-box;
}
#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background: linear-gradient(
      rgba(255, 249, 71) 50%,
      rgb(193, 193, 193) 100%
    )
    no-repeat center;
  margin: 10;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
