/* CSS Document */
html,body{
	height: 100vh;
	width: 100vw;
	overflow: hidden;
}
body{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.io-page{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.io-box{
	flex: 0 0 auto;
}

.io{
	background-image: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.6));
	padding: 50px;
	border-radius: 20px;
	box-shadow: 10px 10px 100px rgba(255,255,255,.6);
}
canvas{
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	left: 0;
}
