* {box-sizing: border-box; }

body { background-color: #EAEAEA;
                  color: #666666;
	          font-family: Arial;
      }

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; }   


nav { 
    font-weight: bold;
    padding: 0; 
    font-size: 120% ;     
    }



nav li {

border-bottom: 1px solid #00008B;
text-align: center; 


}


nav a { 
text-decoration: none;
}
nav ul{ list-style-type: none;
        margin: 0;
        padding-left: 0;
        font-size: 1.2em;
}
nav a { text-decoration: none; }
nav a:link { color: #5C7FA3; }  
nav a:visited { color: #344873; }
nav a:hover { color: #A52A2A; }   

h1 {
  margin-bottom:0;
  margin-top:0;
  font-family: Georgia;
  letter-spacing: 0.25em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  
   }

h2 { color: #1976D2;
    font-family: Georgia;  
    text-shadow: 1px 1px 1px #CCCCCC;
    }

h3 { color:#000033;
      font-family: Georgia;
}
dt{
  color:#002171
}
#footer
{
  font-size: 75%;
  font-style: italic;
  text-align: center;
  font-family: Georgia;
  padding:2em;
  background-color: #FFFFFF;
}
.resort {
  color: #1976D2;
  font-weight: bold;
}

#contact {
  font-size: 90%;
}

#wrapper {
    margin: auto;
    background-color: #90C7E3;
    border: 1px ridge #000033;
    background: linear-gradient(to bottom, #FFFFFF, #90C7E3);
          }

main {
background-color: #FFFFFF ;
padding:1px 20px 20px 30px;
display: block;
overflow: auto;
}

main ul {
      list-style-image: url(marker.gif);
}



#homehero {
   height: 300px;
   background-image: url(coast2.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;
   }
/*everything above is mobile*/
/*medium/tablet layout begins*/

@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;
     grid-row: 2/3; 
     grid-column: auto;
        }
.content main {
     display: grid;
     grid-template-rows: auto;
     grid-template-columns: 1fr 1fr 1fr;
              }
h2 {
grid-row: 1/2;
grid-column: 1/5;
   }
#special {
grid-row: auto;
grid-column: 1/5;
          }
footer {
 grid-row: auto;
grid-column: 1/5;
          }

}

/*meduim layout above*/
/*large layout below*/

@media (min-width: 1024px)  {
 nav ul {
   flex-flow: column;
   padding-top: 1em;
   text-align: left;
        }
#wrapper {
          margin: auto;
          width: 80%  ;
          border: 1px solid darkblue;
          display: grid;
          grid-template-columns: 180px auto;
          grid-template-rows: auto;
          }
#wrapper header {
grid-row: 1/2;
grid-column: 1/3;
                 }
#wrapper nav {
grid-row: 2/5;
grid-column: 1/2;
            }
#wrapper div {
grid-row: 2/3;
grid-column: auto;
                }
#wrapper main {
grid-row: 3/4;
grid-column: auto;

              }
#wrapper footer {
grid-row: auto;
grid-column: auto;
                 }

                }


         