/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
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;
}

* {
	box-sizing: border-box;
}

/*======================================================================================================================== */

body{

	background-color: #F3F7F6;
	font-family: 'Roboto', sans-serif;
	
}

header{

	background-color: #354146;
	padding-bottom: 30px;
	
}

/*=======Using flexbox for my navigation======*/


nav ul{

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	
}


li a {

	display: inline-block;
	color: #FFFFFF;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 1.1em;
}



ul a:link{

	color: #FFFFFF;
	
}



ul a:visited{

	color: #FFFFFF;
}




ul a:hover{

	color: #c9870e;
	
}


ul a:active{


	background-color: #757575;
	color: #c9870e;
}


ul a:focus{

	color: #c9870e;
}


/*=========Styling Main Content ====== */


main{

	width: 1024px;
	background-color: #FFFFFF;
	min-height: 300px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 30px;
	
}






main img{

	margin-left: auto;
	margin-right: auto;
	width: 30%;
	padding-top: 60px;
	padding-bottom: 60px;
	padding-left: 10px;
	
}



main h2 + img{

	margin-left: auto;
	margin-right: auto;
	width: 70%;
	display: block;

}



 

div{

	display: flex;
	justify-content: center;
	flex-wrap: wrap;

		
}




h1{

	font-family: 'Playfair Display', serif;
	color: #E8B34D;
	font-size: 3.0em;
	font-weight: 400;
	padding: 30px 20px;
	text-align: center;
	
}


h2{
    
	font-family: 'Playfair Display', serif;
	color: #3f3d3d;
	font-size: 2.0em;
	font-weight: 200;
	padding: 20px 20px;
	text-align: left;
}






p{

	color: rgb(105, 105, 105);
	line-height: 2.0rem;
    margin-bottom: 1.5rem;
	padding-left: 20px;
	padding-right: 20px;
	
}


strong{

	font-weight: bold;
}



main p:last-child{

	font-size: 1.1em;
	padding-top: 40px;
	text-align: center;
}


main p:last-child a{

	text-decoration: none;
	color: #c9870e;



}




main p:last-child a:link{

	color: #c9870e;


}



main p:last-child a:hover{

	color: #c9870e;


}


/*======Styling bottom list items =========*/


ol{

	display: flex;
	margin-top: 20px;
	justify-content: center;

}


ol li a{

	color: rgb(105, 105, 105);
	padding-top: 40px;
	border-bottom: 1px solid #c9870e;
}


ol a:hover{


	color: #c9870e;

}


/*=======footer=========*/


footer{

	background-color: #354146;
	padding-top: 30px;
	padding-bottom: 20px;
	
}


footer p{

	display: block;
	text-align: center;
	color: #FFFFFF;
}


