html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	height: 100%;
	background: rgb(255, 255, 255);
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
}

.image-container {
	display: flex;
	height: 100%;
	max-width: 100%;
	position: relative;
	-webkit-perspective: 1500px;
	perspective: 1500px;
	transform-style: preserve-3d;
	transform: translate3d(0, 0, 0);	
}

.loading-screen {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(255, 255, 255);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	visibility: visible;
	opacity: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 40px;
	transition: 0.25s ease all 0.75s;
	color: rgb(168, 168, 168);
	transform: translateZ(50px);
}

.loading-screen.hidden {
	visibility: hidden;
	opacity: 0;
}

canvas {width: auto;
	max-height: 100%;
	max-width: 100%;
	display: block;
	margin: auto;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(#ffffff, #ffffff);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
