* {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#game {
	z-index: 10;
	position: relative;
	touch-action: none; /* Direct all pointer events to JavaScript code. */
}

.shadowed {
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
}

#gameCanvas {
    box-shadow: 0 0 5vmin 1vmin black;
}

#wrongRotation {
	display: none;
	z-index: 20;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1);
}
#wrongRotation img {
	display: block;
	width: 30%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 40%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#menu {
	position: fixed;
}