html, body {
	width: 100%;
	height: 100%;
  	margin: 0px;
  	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

html {
	flex-direction: column;
}

body {
	flex-direction: row;
	overflow: hidden;
    touch-action: none;
	/* background: radial-gradient(#efefef, #000000); */
	background: rgb(0,0,0);
}

canvas {
	margin: auto;
	display: block;
}

#bg {
  position: absolute;
  height:100%;
  width: 100%;
  opacity: 0.8;
  transition: opacity 1s ease;
  background-color: rgb(0,0,0);
}

.loading-message,
.intro-message {
  position: absolute;
  top: calc(50% - 14px);
  left: 0;
  width: 100%;
  font-size: 28px;
  text-align: center;
  font-style: italic;
  pointer-events: none;
  transition: opacity 1s ease;
  color:rgb(250,250,250);
}
