body{
	margin: 300px 20% 100px 20%;
	background-color:#ffa31a; 

}

h1{
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	font-style:regular;
	font-size: 72px;
	color:#ffffff;
}
h2{
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	font-style:regular;
	font-size: 36px;
	color:#ffe0b3;	
}
p{
	font-family: 'Josefin Slab', serif;
	font-weight:600;
	line-height: 25px;
}
.wallpaperStretcher{
	height:200px;
	background-image:url("images/banner3.jpg");
	background-repeat: no-repeat;
	background-size:cover;
	background-color: #cccccc;
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	font-style:regular;
	color: #ffa31a;
}

.nav-container{ 	
	width:100%; 
	background-color: #b36b00;
	box-shadow: 2px 2px 20px #7E7F79;  
	position:fixed; 
	left: 0;  
	top: 0;
} 

.nav-container ul{
	width:100%;
	margin: auto;
	padding:0; /*Ul would have default padding otherwise*/
	list-style-type: none; 
	font-size:18px;  
	font-family:"Gill Sans", Helvetica, Arial, sans-serif;
}  

.nav-container li{
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	font-style:regular;	
	float: left; /*each seperate item tries to float left*/
}  

.nav-container a{ 
	display: block;  /*let’s us treat each link as a box, which can be sized and styled*/ 
	box-sizing: border-box; /*allows the "width" to include borders and padding*/
	width: 130px; 
	padding: 10px 30px 10px 30px;
	text-decoration: none;  /*removes the default underline*/
	text-align: center; 
	background-color: #b36b00; 
	color:#EDF4E6;
} 

.nav-container a:hover{ 
	background-color: #ff9900;
/* changes link-box color on rollover*/ 
}

/*/.nav-container ul{
	width: 100%;
	background-image: url("images/banner3.jpg");
	position: fixed;
	left: 0;
	top: 0;
}
.nav-container ul{
	margin: 0; /*turn off default margin*/
/*	padding: 0;/*turn off default padding*/
/*	list-style-type: none;}
/*no bullets*/
/*.nav-container a{
	display: block;/*allows dimensions + sittingside by side*/
	/*makes width include padding + borders*/
/*	box-sizing:border-box;
	width:130px;
	padding: 4px 0 4px 0;
	border-right:  solid 1px #646435;
	text-align: center;
	background-color: #9C9C58;
	text-decoration: none;
	font-family: "gill sans", sans-serif;
	}*/

.figure-right{
	float: right;
	margin: 15px 0 15px 15px;
}
.figure-left{
	float: left;
	margin: 15px 15px 15px 0;
}
figure{
/*stuff here*/
	display:table;
}
figure img{
	max-width: 100%;
	height: auto;
}
figcaption{
	display: table-caption;
	caption-side: bottom;
	background-color: #ffe0b3;
	text-align: center;
	font-size: 12px;
	padding: 5px;
}



@media screen and (min-width:1900px) {
    p{
        font-size: 20px;
    }
}

























