body { padding: 0; margin: 0 }
#unity-container { position: absolute }
#unity-container.unity-desktop { width: 100vw; height: 100vh }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background: #000000 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; background: url('logo.png') no-repeat center ; ; background-size: cover }
#unity-progress-bar-empty { 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-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 }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-mobile-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }

@font-face {
    font-family: "Squada One";
    src: url("./font/SquadaOne-Regular.ttf") format("truetype");
  }
  
  html {
    font-size: 62.5%;
  }
  
  body {
    font-size: 1.4rem;
    font-family: "Squada One";
  }
  
  .loading {
    background-image: url("./images/BG_opz.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
  }
  
  .loading-container {
    width: 70%;
    height: 95%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .loading-progress {
    width: 100%;
    height: 1.2rem;
    position: relative;
    background-color: #190922;
    border-radius: 1rem;
  }
  
  .loading-progress__child {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-image: linear-gradient(to right, #972be6, #6367b8);
    border-radius: inherit;
  }
  
  .loading-percent {
    margin-left: 1rem;
    width: 5rem;
    font-size: 3rem;
    color: #aea6eb;
    transform: translateY(25%);
  }
  
  @media screen and (max-width: 768px) {
    .loading-percent {
      font-size: 2rem;
    }
  }
  
