html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #231f20;
}
#unity-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#unity-canvas {
  display: block;
  width: min(100vw, calc(100vh * 0.5714286));
  height: min(100vh, calc(100vw * 1.75));
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 4 / 7;
  background: #231f20;
  outline: 0;
  touch-action: none;
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-logo {
  width: 154px;
  height: 130px;
  background: url("140.png") no-repeat center;
}
#unity-progress-bar-empty {
  margin-left: auto;
  margin-right: auto;
  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-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
  max-width: min(90%, 640px);
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  z-index: 10;
}
