/* Global styles for the document */
body {
	background: linear-gradient(to bottom, #FFFFFF, #90C7E3);
    	font-family: Verdana, Arial, sans-serif;
}

/* Styles for the header element */
header {
	height: 120px;
    background-color: #002171;
    color: #FFFFFF;
    font-family: Georgia, serif;
}

/* Styles for the main element */
main {
	background-color: #FFFFFF;
	margin-left: 170px;
	overflow: auto;
	padding-left: 2.0em;
	padding-right: 2.0em;
	display: block;
}


/* Styles for the h1 element */
h1 {
	font-size: 3em;
	letter-spacing: 0.25em;
	padding: 0.5em;
	text-align: center;
}

/* Styles for the nav element */
nav {
	position: fixed;
    	font-weight: bold;
	float: left;
	width: 160px;
	padding: 0;
	font-size: 1.2em;
}

/* Styles for the h2 element */
h2 {
    color: #1976D2;
    font-family: Georgia, serif;
}

/* Styles for the h3 element */
h3 {
    font-family: Georgia, serif;
}

/* Styles for the dt element */
dt {
    color: #002171;
    font-weight: bold;
}

/* Styles for a class named resort */
.resort {
    color: #1976D2;
    font-size: 1.2em;
}

/* Styles for the footer element */
footer {
	background-color: #FFFFFF;
	margin-left: 170px;
    	font-size: 0.70em;
   	 font-style: italic;
    	text-align: center;
	padding: 1em;
}

/* Style rule for the wrapper ID */
#wrapper {
	background: linear-gradient(to bottom, #FFFFFF, #90C7E3);
}

/* Hero image */
#homehero {
	background-image: url("coast.jpg");
	background-size: 100% 100%;
	background-position: center;
	height: 300px;
	margin-left: 170px;
}

/* Yurt image */
#yurthero {
	background-image: url("yurt.jpg");
	background-size: 100% 100%;
	background-position: center;
	height: 300px;
	margin-left: 170px;
}

/* Trail image */
#trailhero {
	background-image: url("trail.jpg");
	background-size: 100% 100%;
	background-position: center;
	height: 300px;
	margin-left: 170px;
}

/* Remove underline from nav links */
nav a { 
	text-decoration: none; 
}

/*Universal Box Border*/
* { 
	box-sizing: border-box; 
}

/*Nav Link Color*/
nav a:link { 
	color: #5C7FA3; 
}

/*Nav Visited Color*/
nav a:visited { 
	color: #344873; 
}

/*Nav Hover Color*/
nav a:hover { 
	color: #A52A2A; 
}

/*Nav List Style*/
nav ul {
	list-style-type: none;
	padding-left: 1em;
	display: block;
}

/*Nav List Style*/
ul {
	list-style-type: none;
	padding-left: 1em;
	display: block;
}

/*Section Style*/
section {
	float: left;
	width: 33%;
	padding-left: 2em;
	padding-right: 2em;
}

/*Header Link Style*/
header a:link { 
	color: #FFFFFF;
	text-decoration: none;  
}

/*Header Visited Style*/
header a:visited { 
	color: #FFFFFF; 
}

/*Header Hover Style*/
header a:hover { 
	color: #90C7E3; 