* {
      margin: 0;
      padding: 0;
    }

    #unity-canvas { 
      background: #000000; 
      display:block; 
      width: 100vw; 
      height: 100vh; 
    }

    #gameContainer canvas {
      display:block;
      width: 100vw;
      height: 100vh;
    }

    div#webgl-content {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
    div#loadingBox {
      width: 100%;
      height: 0px;
      position: absolute;
      top: 55%;
      margin-top: 137px;
      text-align: center;
    }
    div#icon {
      width: 100%;
      height: 100%;
      position: absolute;
      background: url("bg-loading.jpg") no-repeat center;
      box-shadow: 1px 1px 5px #141414;
    }
    div#box {
      width: 828px;
      height: 667px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -199px;
      margin-left: -164px;
      background: #222;
      box-shadow: 1px 1px 5px #000;
    }
    div#bgBar {
      display: none;
      position: absolute;
      width: 300px;
      margin-left: -150px;
      left: 50%;
      height: 18px;
      background-color: #882121;
      box-shadow: 1px 1px 5px #111;
    }
    div#progressBar {
      display: none;
      left: 50%;
      position: absolute;
      margin-left: -150px;
      width: 0px;
      height: 18px;
      background-color: #dc4241;
    }
    p#loadingInfo {
      color: #fff;
      letter-spacing: 1px;
      position: absolute;
      width: 100%;
      font-family: sans-serif;
      text-align: center;
      top: 55%;
      font-size: 11px;
      font-weight: 500;
      margin-top: 140px;
      text-shadow: 0px 0px 5px #000;
    }
    div#spinner {
      position: absolute;
      height: 18px;
      left: 50%;
      margin-left: -150px;
      width: 300px;
      position: relative;
      overflow: hidden;
      background-color: #882121;
      box-shadow: 1px 1px 5px #111;
    }
    div#spinner:before {
      display: block;
      position: absolute;
      content: "";
      width: 150%;
      margin-left: -10px;
      height: 10px;
      background-color: #e85352;
      transform: rotate(-5deg);
      animation: loading 1s linear infinite;
    }
    @keyframes loading {
      from {
        top: -185%
      }
      to {
        top: 225%
      }
    }
