@charset "UTF-8";

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: black;
}

canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

* {
  touch-action: pan-y;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera*/
}

#background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url('../img/loading_screen.jpg') no-repeat center;
  background-size: auto 100%;
  display: none;
}

#unity-loading-bar {
  position: absolute;
  width: 80%;
  left: 50%;
  top: 90%;
  transform: translate(-50%, -50%);
  display: none;
}

#unity-progress-bar-empty {
  height: 60px;
  border-radius: 30px;
  background-color: black;
}

#unity-progress-bar-full {
  position: absolute;
  width: calc(100% - 20px);
  height: 40px;
  margin-top: 10px;
  margin-left: 10px;
  border-radius: 20px;
  background-color: rgb(173, 0, 0);
}

@media (max-width: 1199px) {
  #background-image {
    background-size: contain;
  }
}
