body {
    background: black none;
}

#game {
    position: absolute;
    left: 0;
    top: 0;
    /*width: 100% !important;
	height: 100% !important;*/
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

#canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* portrait */
@media screen and (orientation: portrait) {
	/* portrait-specific styles */
	#three-canvas, #pixi-canvas {
		display: none;
	}
	#rotateImage {
		display: block;
	}
  }
  /* landscape */
  @media screen and (orientation: landscape) {
	/* landscape-specific styles */
	#three-canvas, #pixi-canvas {
		display: block;
	}
	#rotateImage {
		display: none;
	}
  }
