@font-face {
    font-family: 'Open Sans';
    src: url('../img/OpenSans.ttf');
}

body {
	margin:0px;
	width:100%;
	height:100%;
	background-color:#424242;
	background-repeat:no-repeat;
	background-size:cover;
	font-family:'Open Sans', sans-serif;
	font-size:13px;
	color:#fff;
}

#canvas-container {
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background-color:#000;
	overflow:hidden;
	color:#fff;
}

#starfield {
	display:none;
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	opacity:0;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	background-image:url('img/stars.png');
	transition:opacity 2s;
}

#text-container {
	position:absolute;
	bottom:30px;
	left:50%;
	width:40%;
	text-align:center;
	opacity:0;
	transition:opacity 0.8s;
	transform:translateX(-50%);
}

#text-container img {
	max-width:100%;
	max-height:100px;
}

#switch {
	position:absolute;
	z-index:3;
	width:40px;
	height:100px;
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center;
	background-image:url('img/switch-off.png');
}

#light {
	position:absolute;
	z-index:2;
	width:80px;
	height:80px;
	background-color:#fff;
	border-radius:50%;
	opacity:0.6;
	transition:opacity 0.8s;
}