@charset "UTF-8";

body {
    text-align: center;
}

img {
    width: 90%;
    height: auto;
}

#mainwrapper header {
	/*Header */
	background-color: rgba(208,207,207,1.00);
	overflow: auto;
	font-family: montserrat, sans-serif;
	font-style: normal;
	font-weight: 400;
}
#mainwrapper header #logo {
	width: 100%;
	float: left;
	padding: 0;
	color: rgba(146,146,146,1.00);
	background-color: #2e845c;
}
#mainwrapper header #logo img {
	width: 100%;
}
#content #mainContent h1, #content #mainContent h2 {
	/* Styling for main headings */
	font-family: source-sans-pro, sans-serif;
	text-align: center;
	color: rgba(0,0,0,1.00);
}
#content #mainContent h3 {
	/*Captions ot Taglines */
	font-family: source-sans-pro, sans-serif;
	font-style: normal;
	font-weight: bold;
	color: rgba(0,0,0,1.00);
}
#content #mainContent p {
	/* All paragraphs under maincontent */
	color: rgba(0,0,0,1.00);
	font-family: source-sans-pro, sans-serif;
	font-style: normal;
	font-weight: 200;
	text-align: left;
	padding-left: 5%
}
#mainContent {
	/* Container for the main content area */
	width: 100%;
	padding-left: 0;
	float: left;
	padding-right: 0;
	padding-top: 20px;
	background-color: white;
}
#mainwrapper {
	/* Container of all content */
	width: 80%;
	max-width: 1080px;
	overflow: auto;
	margin 10px auto 10px auto;
	display: inline-block;
}
#footerbar {
	/* Footer bar at the bottom of the page */
	clear: both;
	background-color: #2e845c;
	color: #ffffff;
	font-family: source-sans-pro, sans-serif;
	font-style: normal;
	font-weight: 200;
	text-align: center;
	padding: 10px;
}

/* Tablet view */
@media screen and (max-width:769px) {
#mainContent {
	/* Container for the blog post */
	padding: 12px 0 12px 0;
	float: none;
	background-color: white;
}
#mainwrapper header {
	/* Header */
	width: 100%;
}


/* Mobile view */
@media screen and (max-width:480px) {
#mainwrapper header #logo {
	/* Company Logo text in header */
	width: 96%;
	margin-left: 2%;
}
#content #mainContent h3 {
	/* Title under maincontent, if any */
	font-size: 14px;
}
	
