/* CSS Document */
html,body{
	height: 100vh;
	width: 100vw;
	overflow: hidden;
}
body{
	background: url(/resources/imgs/login-bg.jpg) no-repeat 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: rgba(255,255,255,.6);
	padding: 50px;
	border-radius: 10px;
	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;
}