/* External Style Sheet: pacific.css */
body {
	background-color: #90C7E3;
	color: #666666;
	font-family: Arial;
	margin: 0;
}
h1 {
	background-color: #002171;
	color: #FFFFFF;
	font-family: Georgia;
	padding: 1em;
}
h1 {
	text-align: center;
	font-size: 1.5em;
	margin: 0;
}
h1 a:link {
	color: #FFFFFF;
	}
h1 a:visited {
	color: #FFFFFF;
	}
h1 a:hover {
	color: #90C7E3;
}
nav {
	background-color: white;
	font-size: 1.2em;
	text-align: center;
}
a:link {
	color: #5C7FA3;
}
a:visited {
	color: #344873;
}
a:hover {
color: #A52A2A;
}
nav ul {
	display: flex;
	flex-direction: column;
	list-style-type: none;
	padding-left: 0em;
}
nav li {
	padding-top: .5em;
	padding-bottom: .5em;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	border-bottom: 1px solid;
}
h2 {
	color: #1976D2;
	font-family: Georgia;
}
dt {
	color: #002171;
	font-weight: bold;
}
.resort {
	color: #1976D2;
	font-size: 1.2em;
}
footer {
	font-size: .70em;
	font-style: italic;
	text-align: center;
	padding: 1em;
	background-color: #FFFFFF;
}
#wrapper {
	background-color: #FFFFFF;
	background-repeat: no-repeat;
}
h3 {
	font-family: Georgia;
}
main {
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 0;
	padding-bottom: 0;
	display: block;
}
#homehero {
	height: 300px;
	background-image: url("coast.jpg");
	background-repeat: no-repeat;
	background-size: 200% 100%;
	
}
#yurthero {
	height: 300px;
	background-image: url("yurt.jpg");
	background-repeat: no-repeat;
	background-size: 200% 100%;
	
}
#trailhero {
	height: 300px;
	background-image: url("trail.jpg");
	background-repeat: no-repeat;
	background-size: 200% 100%;
	
}
nav a{
	text-decoration: none;
}
* {
	box-sizing: border-box;
}
section {
	padding-left: .5em;
	padding-right: .5em;
}
#mobile {
	display: inline;
}
#desktop {
	display: none;
}
/* This adds style to the table */
table {
	margin: center;
	border: 1px solid;
	border-color: #3399CC;
	border-width: 90%;
	border-collapse: collapse;
}
td, th {
	padding: 5px;
	border: 1px solid;
	border-color: #3399CC;
}
td {
	text-align: center;
}
.text {
	text-align: left;
}
/* going between blue and the regular background color  */
tr:nth-of-type(even) {
	background-color: #DFEDF8;
}
	/* This is a media query for 600px width and above */
@media only screen and (min-width: 600px) {
	h1 {
		font-size: 2em;
		letter-spacing: .25em;
	}
	nav ul {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-around;
		padding-right: 2em;
	}
	nav li {
		width: 12em;
		border-bottom: none;
	}
	section {
		padding-left: 2em;
		padding-right: 2em;
	}
	#flow {
		display: flex;
		flex-direction: row;
	}
	#mobile {
		display: none;
	}
	#desktop {
		display: inline;
	}
	#homehero {
		background-size: 100% 100%;
	}
	#yurthero {
		background-size: 100% 100%;
	}
	#trailhero {
		background-size: 100% 100%;
	}
}
/* This is a media query for 1024px and above */
@media only screen and (min-width: 1024px) {
	body {
		background-image: linear-gradient(to bottom, #FFFFFF 20%, #90C7E3 60%, #FFFFFF 100%);
	}
	nav ul {
		padding-right: 10%;
		padding-left: 10%;
	}
	#wrapper {
		margin: auto;
		width: 80%;
	}
}