*{box-sizing: border-box;}


body{
    background-color: #eaeaea;
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper {
  margin-right: auto;
  background-image: linear-gradient(to bottom, #ffffff, #90c7e3);
  background-color: #90C7E3;
}

header{
   background-color: #002171; 
   color: #ffffff;
   text-align: center;
   
}

header a {
    text-decoration: none;
    color: white;
}

header a:link {
    color: white;
}

header a:visited {
    color: white;
}

header a:hover {
    color: #90c7e3;
}

h1{
    margin-bottom: 0;
    margin-top: 0;
    font-family: Georgia, 'Times New Roman', serif;
    padding-top: 0.5em;
    letter-spacing: 0.25em;
    padding-bottom: 0.5em;
}
nav {
    
    font-weight: bold;
    font-size: 120%;
    padding: 0;
    text-align: center;

}

nav a{
   text-decoration: none; 
   padding-left: .5em;
   padding-right: .5em;

}

nav ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    font-size: 1.2em; 
}

nav li {
    border-bottom: 1px solid darkblue;
}

nav a:link {
    color: #5c7fa3;
}
nav a:visited {
    color: #344873;
}

nav a:hover {
    color: #a52a2a;
}
main {
    
    
    padding: 1px 20px 20px 20px;
    display: block;
    overflow: auto;
    background-color: white;

}

main ul {
    list-style-image: url(marker.gif);
}



h2{
    color: #1976D2;
    font-family: Georgia, 'Times New Roman', serif;
    text-shadow: 1px 1px 1px #cccccc;
    
}

h3{
    font-family: Georgia, 'Times New Roman', serif;
    color: #000033;
}

dt{ 
    color: #002171;
}
footer{
    
    padding: 2em;
    background-color: white;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 75%;
    font-style: italic;
    text-align: center;
}

.resort{
    color: #1976D2;
    font-weight: bold;
}

#contact {
    font-size: 90%;
    
}
 #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;
 
 }
    
@media (min-width: 600px) {
    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
    }
    nav li {
        border-bottom: none;
    
    }
    section{
        margin-left: 2em;
        margin-right: 2em;
        flex: 1;
    }
    .flow {
        display: flow;
        flex-direction: row;

    }
}
@media (min-width: 1024px) {
    #wrapper {
        margin: auto;
        width: 80%;
        border: 1px solid darkblue;
        box-shadow: 3px 3px darkblue;
    }
    nav {
        text-align: left;
        padding-left: 1em;
    }
    @supports (display: grid) {
        nav ul {
            flex-direction: collumn;
            padding-top: 1em;
            text-align: left;
        }
        header{grid-area: header;}
        nav {grid-area: nav;}
        main {grid-area: main;}
        footer {grid-area: footer;}
        .hero {grid-area: hero;}

        #wrapper {
            display: grid;
            grid-template:
            "header header"
            "nav hero"
            "nav main"
            "nav footer" / 180px;
            
        }

    }
}