body {
	margin: 4% 5%;
	background-color: #ffffe6; /* in case browsers do not support gradient */
	background: radial-gradient(#ffffe6, #ffb515);
	font: normal 85% Helvetica, Arial, sans-serif;
	text-align: center;
}

h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 1.75em;
	font-weight: bold;
	color: #b3003b;
	margin-bottom: 0.2em;
}

h2 {
	font-size: 1.17em;
	font-weight: bold;
	color: #b3003b;
}

h3 {
	font-size: 1em;
 	color: #b3003b;
	margin-bottom: 0.9em;
}

h4 {
	font-size: 0.85em;
	color: #b3003b;
}

header {
	text-align: left;
	/*background-color: #fef6e1;
	border-radius: 10%;
	padding-left: 2%;
	padding-right: 2%;
	padding-top: 0.1%;*/
}

#banner-flex-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
}

#banner {
	text-decoration: none;
}

#headerInfo {
	width: 80%;
	order: 1;
	margin-right: auto;
}

#hamburger {
	width: 20%;
	order: 2;
	margin-left: auto;
	margin-top: 0.67em; /* To match with banner */
}

/* font awesome styling */
.fa {
	color: #b3003b;
}

#smallNav {
	background: transparent;
	width: 100%;
}

.nav-flex-container ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	margin-top: 0.5em;
	margin-bottom: 0em;
}

.nav-flex-container ul li {
	padding-right: 2em;
}

.nav-flex-container ul li a {
	font-size: 1.3em;
	font-weight: bold;
	text-decoration: none;
	background-color: #fef6e1;
	border-radius: 25%;
}

.nav-flex-container ul li a:hover {
	text-decoration: underline;
}

hr {
	width: 80%;
	color: black;
}

#content {
	overflow: hidden; /* This keeps the content image from overflowing into the footer */
	background: #fef6e1;  /* Replaced opacity with hard-coded beige */
	/* opacity: 0.8; This had to be removed because it was causing the image colors to be noticeably washed out on the image slider */
	padding-top: 0.5%;
	padding-right: 2%;
	padding-bottom: 1.5%;
	padding-left: 2%;
	border-radius: 3%;
	line-height: 1.3;
}

img {
	width: 100%;
	height: auto;
	border-radius: 2%;
	border-style: solid;
	border-width: 1px;
	border-color: silver;
}

.content-flex-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content-flex-container img {
	margin-bottom: 1em;
}

section ul {
	display: inline-block;  /* center bullet points with text*/
}

#sitePicture {
	width: 60%;
}

/* Google Maps on Event Page */
#mapholder {
	width: 75vw;
	height: 75vw;
	background-color: grey;
	border: solid #bfbfbf 1px;
	border-radius: 4%;
	margin-bottom: 1em;
}

/* Fotorama on Gallery page */
.fotorama__wrap {
    margin: 0 auto;   /*Center the image slider*/
}

.fotorama {
	text-align: left;
	font-weight: bold;
	width: 100%;
	height: auto;
	border-radius: 4%;
}

/* Media query */
@media (min-width: 50em) { /*screen width 50em and above*/ 
	body {
		margin: 4% 10%;
		font-size: 100%;
	}
	
	h1 {
		font-size: 2em;
	}

	h2 {
		font-size: 1.5em;
	}

	h3 {
		font-size: 1.17em;
		margin-bottom: 0.9em;
	}

	h4 {
		font-size: 1em;
	}
	
	#wrapper {
		max-width: 50em;
		margin-left: auto;
		margin-right: auto;
	}
	
	.nav-flex-container ul li a {
		font-size: 1.25em;
	}
	
	#content {
		line-height: 1.5;
	}
	.content-flex-container {
		flex-direction: row;
		justify-content: space-around;  /* even horizontal spacing between flex items*/
		flex-wrap: wrap;
	}
	
	/*specific to index page */
	#orgInfo {
		text-align: left;
		width: 50%;
	}
	
	#sitePicture {
		width: 48%;
		padding-left: 1%;
	}
	
	/* Google Maps on Event Page */
	#mapholder {
		width: 100%;
		height: 40vh;
	}
	
	#mapWrapper {
		width: 40%;
		height: auto;
		align-self: flex-start; /* place at top of container */
		margin-top: 1.1em;
		margin-left: 1em;
	}
}