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