html,
body {
	height: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 1em;
}

.container {
	height: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.wrapper {
	color: #333;
	font-family: sans-serif;
	padding: 0px;
}

.header {
	background: url('images/header.jpg') no-repeat;
	background-size: 1000px 300px;
	background-color: #008080;
	height: 300px;
	-webkit-box-shadow: 0px -16px 13px 19px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px -16px 13px 19px rgba(0,0,0,0.75);
	box-shadow: 0px -16px 13px 19px rgba(0,0,0,0.75);
}

.content {
	flex: 1;
	padding-top: 30px;
	padding-bottom: 40px;
	padding-left: 40px;
	padding-right: 40px;
}

.footer {
	padding-top: 10px;
	padding-bottom: 20px;
	padding-left: 40px;
	padding-right: 40px;

	background-color: #333;
	color: #ddd;
	font-size: 0.8em;
}


.copyright {
	margin-top: 10px;
	font-size: 0.79em;
}

@media only screen and (max-width: 600px) {
	.header {
		background-position: 0px 0px;
		background-size: 500px 150px;
		height: 150px;
	}

	.content {
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.footer {
		padding-top: 10px;
		padding-bottom: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}	

}


@media only screen and (max-width: 400px) {
	.header {
		background-position: 0px -70px;
		background-size: 500px 150px;
		height: 80px;
	}

	.content {
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.footer {
		padding-top: 10px;
		padding-bottom: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}

}