@charset "utf-8";
/* SeeMeIngame Default CSS */

* {
	padding: 0;
	margin: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body, html {
	height: 100%;
}

body {
	font: 14px Tahoma;
	font-family: 'Shadows Into Light', cursive;
	color: white;
	background: black;
	position: relative;
}

#bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	/*background: url("../bg.jpg") rgba(0, 0, 0, 0.5);*/
	z-index: -1;
}
#bg img {
	width: 100%;
	opacity: 0.6;
}

#mainWrapper {
	margin: 0 auto;
	width: 990px;
	height: 100%;
	/*background: red;*/
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items: center;
	text-align: center;
	font-size: 30px;
}

#comingsoon {
	width: 990px;
	height: 200px;
	background: black;
	flex: 1;
	border-radius: 10px;
	opacity: 0.5;
	box-shadow: 1px 1px 4px silver;

	display: table-cell;
	vertical-align: middle;
}