/* Scene Manager v1.0
   Author: Tony Leung
   E-mail: tony.leung@cruzium.com */

.scene {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	display:none;
	z-index:2;
}
.scene-body {
	height:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
}
.scene-content {
	width:100%;
	position:relative;
	flex-grow:1;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}
.scene-bg {
	width:100%;
	height:100%;
	overflow:hidden;
	position:fixed;
	top:0;
	left:0;
	display:none;
	z-index:0;
}
.scene-bg .layer {
	width:100%;
	height:100%;
	position:absolute;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
