/*-----------Small Display------------*/
* {
  box-sizing: border-box;
}
body {
  background-color: #90c7e3;
  color: #666666;
  font-family: verdana, arial, sans-serif;
  margin: 0;
}
#wrapper {
  background-color: #ffffff;
  background-repeat: no-repeat;
}
header {
  background-color: #002171;
  color: #ffffff;
  font-family: georgia, serif;
  padding: 1em;
}
header a {
  text-decoration: none;
}
header a:link {
  color: #ffffff;
}
header a:visited {
  color: #ffffff;
}
header a:hover {
  color: #90c7e3;
}
h1 {
  font-size: 1.5em;
  text-align: center;
}
h2 {
  color: #1976d2;
  font-family: georgia, serif;
}
h3 {
  font-family: georgia, serif;
}
nav {
  font-size: 1.2em;
  text-align: center;
  background-color: #ffffff;
}
nav a {
  text-decoration: none;
}
nav a:link {
  color: #5c7fa3;
}
nav a:visited {
  color: #344873;
}
nav a:hover {
  color: #a52a2a;
}
nav ul {
  list-style-type: none;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-left: 0;
}
nav li {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
main {
  display: block;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0;
  padding-bottom: 0;
}
.resort {
  color: #1976d2;
  font-size: 1.2em;
}
#homehero {
  height: 300px;
  background-image: url(images/coast.jpg);
  background-repeat: no-repeat;
  background-size: 200% 100%;
}
#yurthero {
  height: 300px;
  background-image: url(images/yurt.jpg);
  background-repeat: no-repeat;
  background-size: 200% 100%;
}
#trailhero {
  height: 300px;
  background-image: url(images/trail.jpg);
  background-repeat: no-repeat;
  background-size: 200% 100%;
}
section {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
footer {
  background-color: #ffffff;
  font-size: 0.7em;
  font-style: italic;
  padding: 1em;
  text-align: center;
}
/*----------Medium Display------------*/
@media (min-width: 600px) {
  h1 {
    font-size: 2em;
    letter-spacing: 0.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%;
  }
}
/*-----------Large Display------------*/
@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 {
    margin: auto;
    width: 80%;
  }
}
