/*top navigation bar*/
.topNav {
	background-color: #3A1159; 
	overflow: hidden;
}

/* links on the navigation bar */
.topNav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

/* links on hover*/
.topNav a:hover {
	background-color: #ddd;
	color: black;
}

/*hiding link of top navigation menu */
.topNav .icon {
	display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, 
except for the first one ("Home"). Show the link that contains
should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
	.topNav a:not(:first-child) {display: none;}
	.topNav a.icon {
		float: right;
		display: block;
	}
}

/* The "responsive" class is added to the topnav with JavaScript 
when the user clicks on the icon. This class makes the topnav look	
good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
	.topNav.responsive {position: relative;}
	.topNav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topNav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}
header{
	color: #ffffff;
	background-color: #3A1159;
	text-align:center;
	padding-top: 2em;
	padding-left:10px;
	padding-bottom:2em;
	padding-right:10px;
}
h1 {
	margin:16px;
	font-size: 50px;
}

/*explore button that links to map */
.exploreButton{
	color: #FFFFFF;
	background-color:#000000;
	padding: 12px 24px;
	margin-top: 16px;
	font-size: 18px;
	border: none;
}

.subtitle {
	font-size:24px;
	color: #FFFFFF;
}

h2 {
	margin:16px;
	margin-top: 0px;
	margin-left:0px;
	font-size: 30px;
	padding-bottom:10px;
}

h3 {
	margin:16px;
	font-size: 30px;
	padding-bottom:10px;
}
	
/*container holding the content of each section*/	
.container1{
	padding: 0.01em 16px;
	padding-top: 64px;
	padding-bottom: 64px;
	text-align:center;
}

.container2{
	margin: auto;
	padding: 8%;
	background-color:#F1F1F1;
}

.container3{
	margin: auto;
	padding: 8%;
	background-color:#FFFFFF;
}


p {
	color: #757575;
	font-size:16px;
}

.layersList {
	color:#757575;
	font-size: 16px;
}

footer{
	padding-top:32px;
	padding-bottom:32px;
	text-align:center;
	background-color:#666666;

}

.white {
	color:#FFFFFF;
}

/*styling the images*/
img {
	max-height:100%;
	width:auto;
}

.sideImg {
	height: 50%;
	display: inline-block;
}

#mapImage {
	height: 50%;
	margin-top: 6%;
}

/*box holding the picture content */
.third{
padding:0 8px;
float:left;
width: 100%; 
}
	
/*if the pixel size is over 600 - picture occupies 1/3 of the screen */
@media (min-width: 600px) {
	.third {
		width:33.33%;
	}
}