* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100vh;
	width: 100vw;
}

html {
	font-size: 16px;
	font-family: Arial, sans-serif;
}
head a:visited {
	color:#FFFFFF;
	text-decoration:none;
}
#head a:hover {
	color: #90C7E3;
}
	body {
	background-color: #EAEAEA;
	color: #666666;
	font-family: Arial, Helvetica, sans-serif;
}
h1 {	
	background-repeat: no-repeat;
	background-position: right;
	background-color: #002171;
	color: #FFFFFF;
	margin-bottom: 0;
	font-family: Georgia, 'Times New Roman', sans-serif;
	margin-top : 0px;
	text-align: center;
	letter-spacing: .25em;
	padding-bottom:.5em;
	padding-top:.5em;
}

nav {
	font:bold;
	padding: 0;
	font-size: 120%;
	text-align:center;
}
	nav li {
		list-style-image: none;
		list-style-type: none;
		border-bottom: 1px solid darkblue;
	}

nav, a{
	text-decoration: none;
}
h2 {
	color: #1976D2;
	font-family: Georgia, 'Times New Roman', sans-serif;
	text-shadow: 1px 1px #CCCCCC;
}
h3 {
	font-family: Georgia, 'Times New Roman', sans-serif;
	color: #000033;
	margin:10px;
}
li {
	list-style-image: url('marker.gif');
	text-indent: 1em;
}
dt {
	color: #002171;
}
main {
	padding: 1px 20px 20px 20px;
	display: block;
	padding-bottom: 20px;
	background-color: #FFFFFF;
	padding-left: 30px;
	overflow: auto;
}

main ul {
		list-style: none;
		margin: 0;
		padding-left: 0;
		font-size: 1.2em;
	}

#contact {
	font-size:90%
}

footer {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 75%;
	font-style: italic;
	text-align: center;
	padding: 1em;
	background-color:#FFFFFF;
}
a:link {
text-decoration-color: #5C7FA3;
}
a:visited {
text-decoration-color:#344873;
}
a:hover {
text-decoration-color:#A52A2A;
}

.resort {
	color: #1976D2;
	font-weight: bold; 
}
#wrapper {
	background-color: #90C7E3;
	background-image: linear-gradient(to bottom, #FFFFFF, #90C7E3);
	max-height: 100%;
	box-sizing: border-box;
}

#homehero {
	height: 300px;
	background-image: url('coast2.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

#yurthero {
	height: 300px;
	background-image: url('yurt.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

#trailhero {
	height: 300px;
	background-image: url('trail.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
* {
	box-sizing: border-box;
}


section #s1 {
}
section #s2 {
}
 
section {
}

div #flex {
	display:flex;
}
@media screen and (min-width: 600px) {
	nav ul {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
	}

	nav li {
		border-bottom: none;
	}

	section {
		padding-left: 2em;
		padding-right: 2em;
	}
	.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 {
    flex-direction: column;
    padding-top: 1em;
	text-align: left;
  }
  
  nav {
    
    padding-left: 1em;
  }

	#wrapper {
		margin: auto;
		width: 80%;
		border: 2px solid darkblue;
		box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto 1fr auto auto;
	}
  
  a  {
    grid-column-start: 1;
	grid-column-end: 4;
	display:grid;
  }
  li {
	  text-align:left;
  }
  
  nav {
    grid-row: 2 / 5;
    grid-column: 0 / 1;
	text-align: left;
  }
  div{
	  grid-row: 2 / 3;
	  grid-column: 2 / 4;
  }
 
  
  main {
    grid-row: 3 / 4;
    grid-column: 2 / 4;
  }
  
  footer {
    grid-row: 4 / 5;
    grid-column: 2 / 4;
  }
}
