html {
	box-sizing: border-box;
  }
  *, *:before, *:after {
	box-sizing: inherit;
  }
  body {
	margin: 0;
	background-color: gray;
  }
  #gameContainer {
	width: 100vw;
	height: 100vh;
  }
  canvas {
	width: 100%;
	height: 100%;
	display: block;
  }
  canvas + * {
	z-index: 2;
  }
    .container{
       position:  relative;
	   height: 100%;
    }
  .logo {
	  position: absolute;
	  display: block;
	  max-width: 100vw;
	  max-height: 40vh;
	  width: auto !important;
	  height: auto;
	  margin-left: auto;
	  left: 0;
	  right: 0;
	  transform: translate(50%, 37%);
	  text-align: center;
  }

  #loader {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-image: url(image/background.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }
   
  #_progress
  {
	position: relative;
	bottom: 50px;
	right: 0px;
	color: white;
  }
  
  .loading {
	position: absolute;
	top: calc(50% - -100px);
	left: calc(50% - 25px);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	perspective: 800px;
}

.inner {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;  
  }
  
  .inner.one {
	left: 0%;
	top: 0%;
	animation: rotate-one 1s linear infinite;
	border-bottom: 3px solid #0784f8;
  }
  
  .inner.two {
	right: 0%;
	top: 0%;
	animation: rotate-two 1s linear infinite;
	border-right: 3px solid #fffb00;
  }
  
  .inner.three {
	right: 0%;
	bottom: 0%;
	animation: rotate-three 1s linear infinite;
	border-top: 3px solid #ffa600;
  }
  
  @keyframes rotate-one {
	0% {
	  transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
  }
  
  @keyframes rotate-two {
	0% {
	  transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
  }
  
  @keyframes rotate-three {
	0% {
	  transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
  }