* {
  box-sizing: border-box;
}
body {
background-color: #90C7E3;
color: #666666;
font-family: Arial;
margin: 0;
}
header {
background-color: #002171;
color: #FFFFFF;
font-family: Georgia;
padding: 1em;
}
h1 {
font-size: 2em;
text-align: center;
letter-spacing: 0.25em;
}
nav {
background-color: #FFFFFF;
text-align: center;
}
nav a {
text-decoration: none;
}
nav a:link {
  color: #5C7FA3;
}
nav a:visited {
  color: #344873;
}
nav a:hover {
  color: #A52A2A;
}
nav li {
padding: 0.5em 1em;
width: 12em;
border-bottom: none;
}
nav ul {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-around;
padding: 0 2em;
margin: 0;
list-style: none;
}
#homehero,
#yurthero,
#trailhero {
height: 300px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
#homehero {
background-image: url("coast.jpg");
}
#yurthero {
background-image: url("yurt.jpg");
}
#trailhero {
background-image: url("trail.jpg");
}
#reshero {
height: 300px;
background-image: url("ocean.jpg");
background-size: 200% 100%;
background-repeat: no-repeat;
}
form {
display: flex;
flex-direction: column;
padding-left: 1em;
width: 80%;
}
input,
textarea {
  margin-bottom: 0.5em;
}
main {
padding: 0 2em;
}
h2 {
color: #1976D2;
font-family: Georgia;
}
h3 {
font-family: Georgia, serif;
}
dt {
color: #002171;
font-weight: bold;
}
.resort {
color: #0000CD;
font-size: 1.2em;
}
footer {
background-color: #FFFFFF;
font-size: small;
font-style: italic;
text-align: center;
padding: 1em;
}
#wrapper {
}
section {
  padding: 0 2em;
}
header a {
  text-decoration: none;
}
header a:link,
header a:visited {
  color: #FFFFFF;
}
header a:hover {
  color: #90C7E3;
}
#mobile {
display: none;
}
#desktop {
display: inline;
}
@media (max-width: 768px) {
  #mobile {
    display: inline;
  }
  #desktop {
    display: inline;
  }
  form {
    display: grid;
    grid-template-columns: 10em 1fr;
    gap: 1em;
    width: 60%;
  }
  input[type="submit"] {
    grid-column: 2;
    width: 9em;
  }
  #reshero {
    background-size: 100% 100%;
  }
}
#flow {
display: flex;
flex-direction: row;
}
@media (min-width: 1024px) {
  body {
    background-image: linear-gradient(to bottom, #FFFFFF 20%, #90C7E3 60%, #FFFFFF 100%);
  }
  nav ul {
    padding-left: 10%;
    padding-right: 10%;
  }
  #wrapper {
    width: 80%;
    margin: 0 auto;
  }
}
table {
  width: 90%;
  margin: 0 auto;
  border: 1px solid #3399CC;
  border-collapse: collapse;
}
td, th {
  padding: 5px;
  border: 1px solid #3399CC;
}
td {
  text-align: center;
}
.text {
  text-align: left;
}
tr:nth-of-type(even) {
  background-color: #DFEDF8;
}