body {background-color: #EAEAEA;
		color: #666666;
		font-family: Arial, Helvetica, sans-serif; }

header{
		background-color: #002171;
		
		color: #ffffff; 
	
		text-align: center;}
		
header a{text-decoration: none; 
			color:#ffffff;}

header a:link {color: #ffffff}

header a:visited {color: #ffffff}

header a:hover {color: #90C7E3}
	
main {background-color: #ffffff;
		
		padding: 1px 20px 20px 20px;
		display: block;
		overflow:auto;
		}	
	
#wrapper {margin:auto;
			background-color: #90C7E3;
			background-image: linear-gradient(to bottom, #ffffff, #90C7E3);
			box-shadow: 3px 3px 3px 3px #333333;
			
			}


			


	
*{box-sizing: border-box;}
	
	
h1 {margin-bottom: 0;
	margin-top: 0;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	font-family: Georgia, "Times New Roman", Serif;
	letter-spacing: 0.25em;}

h2 {color: #1976d2;
	text-shadow: 1px 1px 1px #CCCCCC;
	font-family: Georgia, "Times New Roman", Serif;}
	
h3 {color: #000033;
	font-family: Georgia, "Times New Roman", Serif;}

		
nav {
	
	padding: 0;
	
	font-weight: bold;
	font-size: 120%
	}
	
nav li {
		border-bottom: 1px solid #002171;
		text-align: center;
}	
	
nav a {text-decoration: none;
		padding-left: .5em;
		padding-right: .5em;	
	}
		
nav a {transition: color;
		transition-duration: 3s;
		transition-timing-function: ease-out; 
}

nav a:link {color: #5C7FA3;}

nav a:visited {color: #344873;}

nav a:hover {color: #A52A2A;}
	

nav ul {
	list-style-type: none;
	margin: 0;
	padding-left: 0;
	font-size: 1.2em;
}

main ul {list-style-image: url("marker.gif");}


form {display: flex;
	flex-flow: column nowrap; }
input, textarea { margin-bottom: .5em;}



footer {background-color: #ffffff;
		
		font-size: 75%;
		font-style: italic;
		text-align: center;
		padding: 2em;
		font-family: Georgia, "Times New Roman", Serif;}

#contact {font-size: 90%;}

#homehero {height: 300px;
			
			background-image: url(coast.jpg);
			background-size: 100% 100%;
			background-repeat: no-repeat;}
			
#yurthero {height: 300px;
			
			background-image: url(yurt.jpg);
			background-size: 100% 100%;
			background-repeat: no-repeat;}
			
#trailhero {height: 300px;
			
			background-image: url(trail.jpg);
			background-size: 100% 100%;
			background-repeat: no-repeat;}

dt {color: #002171;}

.resort {color: #1976d2;
		font-weight: bold;}
		
table {
		border-spacing: 0;
		border: 2px solid #3399CC;
		border-collapse: collapse;	
}		

td, th {
	padding: 0.5em;
	border: 2px solid #3399CC;
}		

td {
	text-align: center;
}
.text {
	text-align: left;	
}
tr:nth-of-type(odd) {
	background-color: #F5FAFC
}
		
iframe, embed {float: right; }		
		
@media (min-width: 600px) {
	nav ul{
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;}
		
	nav li {
		border-bottom: none;}
		
	section{
		padding-left: 2em;
		padding-right: 2em;}
		
	form {
		display: grid;
		width: 60%;
		grid-template-columns: 6em 1fr;
		grid-template-rows: auto;
		grid-gap: 1em;	
	}
	
	#submit {grid-column: 2 / 3;
			width: 9em;}
	
}	

.content main{ display: grid;
				grid-template-rows: auto;
				grid-template-columns: 1fr 1fr 1fr; }

	h2 { grid-row: 1 / 2;
			grid-column: 1 / 5; }
		
	section { grid-row: 2 / 3; 
				grid-column: auto; }
	
	#special { grid-row: auto; 
				grid-column: 1 / 5; }
				
	footer { grid-row: auto; 
				grid-column: 1 / 5; }
				


@media (min-width: 1024px) {
		nav ul { 
		display: flex;
		flex-flow: column;
		padding-top: 1em;
		text-align: left;
		}
		
		nav { text-align: left;
				padding-left: 1em;}
		
		 #wrapper {
			margin: auto;
			width: 80%;
			border: 1px solid #002171;
			box-shadow: 1px 1px #000033;
			display: grid;
			grid-template-columns: 180px auto;
			grid-template-rows: auto;
		 }
		header {
			grid-row: 1 / 2; 
			grid-column: 1 / 3; 
			}
		nav {
			grid-row: 2 / 5;
			grid-column: 1 / 2;
		}	
		div {
			grid-row: 2 / 3;
			grid-column: 2 / 3;
		}
		main {
			grid-row: 3 / 4;
			grid-column: 2 / 3;
		}
		footer {
			grid-row: 4 / 5;
			grid-column: 2 / 3;
		}
	}