* {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	line-height: 1;
	text-decoration: none;
	font-size: 1em;
	font-style: normal;
	font-weight: normal;
	color: white;
	box-sizing: border-box;
}

html {
	height: 100%;
	position: fixed;
}

body {
	height: 100%;
	display: flex;
	flex-direction: column;
}

main {
	background-color: #cccccc;
	flex: 1;
	display: flex;
	touch-action: none;
}

canvas {
	touch-action: none;
}

canvas.rotatable {
	cursor: grab;
	cursor: -moz-grab;
	cursor: -webkit-grab;
}

canvas.rotating {
	cursor: grabbing;
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}
