/* base.css */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; 
}
	
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
	
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }

blockquote:before, blockquote:after, q:before, q:after { 
	content: '';
	content: none; 
}
table {
	border-collapse: collapse;
	border-spacing: 0; 
}
 

/* typography */

h1, h2, h3, h4, h5, h6 {
	color: inherit;
	font-weight: normal; 
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
h1 { font-size: 2.2em; line-height: 1.6; margin-bottom: 14px; color: #2d6044;font-family: Verdana,Helvetica,Arial,sans-serif;margin-bottom: 0;}
h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
h5 { font-size: 17px; line-height: 24px; }
h6 { font-size: 14px; line-height: 21px; }



em { font-style: italic; }
strong { font-weight: bold; }
small { font-size: 80%; }


/* links */

a, a:visited { color: #333; text-decoration: underline; outline: 0; }
a:hover, a:focus { color: #000; }
p a, p a:visited { line-height: inherit; }


/* page stlyes */


body {
	background: #fff;
	font: 14px/21px Helvetica, Arial, sans-serif;
	color: #075436;
}
#hero {
	display: flex;
	justify-content: center;	
}
#hero img {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	max-width: 1280px;
}
#content {
	margin: 0 auto;
	max-width: 1280px;
	text-align: center;
}
#content p { 
	font-size: 18px;
	line-height: 1.4em;
	margin: 0 50px 20px 50px; 
}

@media screen and (max-width: 600px) {
    #content {
		text-align: left;
	}
	#content p { 
		margin: 0 15px 20px 15px; 
	}
}















