#landing {
	position: relative;
	width:100%;
	height:400px;
	margin-top: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: 0;
}
	#landing_image {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		min-width:calc(100% + 20px);
		max-width: 1200px;
		min-height:calc(100% + 20px);
		background: #eee;
		display: block;
		z-index: -1;
	}
	#landing_text {
		position: relative;
		max-width: 1200px;
		text-align: center;
		text-transform: uppercase;
	}
		#landing_text > h1 {
			font: 3em "OpenSansB";
			margin-bottom: 20px;
			color: #fff;
			text-shadow: 0px 0px 5px #000;
		}
		#landing_text > h2 {
			font: 2em "OpenSans";
			color: #fff;
			text-shadow: 0px 0px 5px #000;
		}