* {
	background-color: #000;
	color: #fff;
	font-family: 'sans-serif', 'Arial';
	font-size: 14px;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 26px;
	margin-bottom: 10px;
}

#header {
	display: block;
	height: 200px;
	position: relative;
	width: 100%;
}

#header img {
	bottom: -50px;
	left: 50%;
	margin-left: -80px;
	position: absolute;
	width: 160px;
}

#content {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 100px 0 0 0;
	text-align: center;
	width: 800px;
}

/************/
/*          */
/*  Mobile  */
/*          */
/************/

@media all and (max-width: 760px) {

	h1 {
		font-size: 18px;
	}

	#header {
		height: auto;
	}
	
	#header img {
		bottom: 0;
		margin-left: -20%;
		position: relative;
		top: 10px;
		width: 40%;
	}

	#content {
		margin: 0;
		padding: 40px 10px 10px;
		width: 100%;
	}

}