/* Global */

* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #422d0f;
	background-image: url(images/bg.jpg);
	background-size: 50%;
	font-size: 15px;
	color: #fff;
	font-family: Georgia, serif;
}

.container {
	max-width: 45em;
	margin: 0 auto;
	padding: 1em;
}

.border {
	border-bottom: 0.33em solid #108b33;
}

a {
	color: inherit;
}

a:hover {
	opacity: 0.5;
}

/* Header */

header {
	background-color: #009933;
	background-image: url(images/header.jpg);
	text-align: center;
	background-size: cover;
	background-position: top center;
}

header img {
	max-width: 35em;
	width: 100%;
}

/* About */

#about {
	text-align: center;
}

#about h1 {
	font-size: 2em;
	line-height: 1.5em;
}

#about h2 {
	font-size: 1.3em;
	font-weight: normal;
	line-height: 1.5em;
}

/* Banner */

#banner {
	background-color: #fff;
	text-align: center;
}

#banner img {
	max-width: 50em;
	width: 100%;
}

/* Connect */

#connect {
	line-height: 1.5em;
}

#connect .container {
	display: flex;
	align-items: center;
}

#connect .left, #connect .right {
	flex: 1;
	flex-shrink: 0;
	flex-grow: 1;
}

#connect .left {
	padding-right: 1em;
}

#connect .right {
	padding-left: 1em;
}

#connect h3 {
	font-size: 1.2em;
	line-height: 1.5em;
}

#connect .facebook {
	text-decoration: none;
}

#connect .facebook img {
	width: 100%;
	max-width: 9em;
}

/* Footer */

footer {
	background-color: #108b33;
	font-size: 0.8em;
	text-align: center;
	line-height: 1.5em;
}

footer img {
	height: 0.8em;
}

footer a {
	text-decoration: none;
}

footer .carv {
	font-family: sans-serif;
}

/* Responsive */

@media screen and (max-width: 600px) {
	
	body {
		font-size: 12px;
	}

	#connect .container {
		display: block;
		text-align: center;
	}

	#connect .left {
		margin-bottom: 2em;
	}

	#connect .left, #connect .right {
		padding: 0;
		width: 100%;
	}
}
