body {
  height: 100%;
  overflow: hidden;
  width: 100%;
  position: fixed;
  padding: 0;
  margin: 0;
  touch-action:none;
}

#unity-container {
  position: fixed;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  #unity-container {
    position: absolute;
    width: 60vh;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
    background-color:rgb(26,0,60);
  }
}

#unity-canvas {
  width: 100%;
  height: 100%;
}

#loading-screen {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color:rgb(26,0,60) ;
  background-size: cover;
  z-index: 1;
  display: block;
}

#loading-screen.maintenance {
  background: url("/assets/unity/bg22.jpg") center no-repeat;
}
