body { padding: 0; margin: 0 }
#unity-container-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
#unity-container { position: fixed; aspect-ratio: 1920/1080; }
@media (min-aspect-ratio: 1920/1080) {
  #unity-container {height: 100%;}
}
@media (max-aspect-ratio: 1920/1080) {
  #unity-container {width: 100%;}
}
#unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo {
  width: 150px;
  height: 150px;
  background: url('mark.svg') no-repeat center;
  background-size: cover;
  animation: mark1 2s linear infinite forwards;
  margin-bottom: 1.5rem;  
}
@keyframes mark1 {
  0% {
      transform: scale(1) rotate(0deg);
      animation-timing-function: ease-out;
  }
  9% {
      transform: scale(0.95) rotate(0deg);
      animation-timing-function: ease-out;
  }
  16% {
      transform: scale(0.95) rotate(0deg);
      animation-timing-function: ease-out;
  }
  64% {
      transform: scale(0.95) rotate(360deg);
      animation-timing-function: ease-out;
  }
  70% {
      transform: scale(0.95) rotate(360deg);
      animation-timing-function: ease-out;
  }
  80% {
      transform: scale(1) rotate(360deg);
      animation-timing-function: ease-out;
  }
  100% {
      transform: scale(1) rotate(360deg);
      animation-timing-function: ease-out;
  }
}

#unity-progress-bar-empty {
    width: 141px;
    height: 18px;
    margin-top: 10px;
    margin-left: 6px;
    background: url('loading_outside.png') no-repeat center
}

#unity-progress-bar-full {
    width: 0;
    height: 18px;
    margin-top: 10px;
    background: url('loading_inside.png') no-repeat left center;
    background-size: cover;
}

#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
