* {
    box-sizing: border-box;
}
body {
    background-color: #90C7E3;
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
    margin: 0;
}
header {
    background-color: #002171;
    color: #FFFFFF;
    font-family: Georgia, serif;
    padding: 1em;
}
header a:link,
header a:visited {
    text-decoration: none;
    color: #FFFFFF;
}
header a:hover {
    color: #90C7E3;
}
h1 {
    text-align: center;
    font-size: 1.5em;
}
h2 {
    color: #1976D2;
    font-family: Georgia, serif;
}
h3 {
    font-family: Georgia, serif;
}
nav {
    font-size: 1.2em;
    text-align: center;
    background-color: #FFF;
}
nav a:link {
    color: #5C7FA3;
}
nav a:visited {
    color: #344873;
}
nav a:hover {
    color: #A52A2A;
}
nav ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}
nav li {
    padding-top: 0.5em, 1em, 0.5em, 1em;
    width: 100%;
    border-bottom: 1px solid;
}
nav a {
    text-decoration: none;
}
dt {
    color: #002171;
    font-weight: bold;
}
.resort {
    font-size: 1.2em;
    color: #1976D2;
}
footer {
    font-size: 0.70em;
    font-style: italic;
    text-align: center;
    padding: 1em;
    background-color: #FFFFFF;
}
main {
    padding: 0 1em;
    display: block;
}
section {
    padding-left: 0.5em;
    padding-right: 0.5em;
}
table {
    margin: auto;
    border: 1px solid #3399CC;
    width: 90%;
    border-collapse: collapse;
}
td, th {
    border: 1px solid #3399CC;
    padding: 5px;
}
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: 0.5em;
}
#wrapper {
    background-color: #FFFFFF;
}
#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%;
}
#reshero {
    height: 300px;
    background-image: url('images/ocean.jpg');
    background-size: 200% 100%;
    background-repeat: no-repeat;
}
@media (max-width: 599px) {
    #mobile {
        display: inline;
    }
    #desktop {
        display: none;
    }
}
@media (min-width: 600px) {
    #mobile {
        display: none;
    }
    #desktop {
        display: inline;
    }
    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;
    }
    #homehero { 
        background-size: 100% 100%;
    }
    #yurthero { 
        background-size: 100% 100%;
    }
    #trailhero { 
        background-size: 100% 100%;
    }
    form {
        width: 60%;
        display: grid;
        grid-gap: 1em;
        grid-template-columns: 10em 1fr;
    }
    input[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-left: 10%;
        padding-right: 10%;
    }
    #wrapper {
        margin: auto;
        width: 80%;
    }
}