/* Universal selector */
* {
    box-sizing: border-box;
}

/* Wrapper id */
#wrapper {
    background: linear-gradient(to bottom, #FFFFFF, #90C7E3);
}

/* Body element selector */
body {
    margin: 0;
    background-color: #90C7E3;
    background-image: none;
    background-repeat: no-repeat;
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
}

/* Header area */
header {
    padding: 1em;
}

/* h1 element selector */
h1 {
    font-size: 1.5em;
}

/* Left-column navigation area */
nav {
    background-color: white;
    text-align: center;
}

/* Navigation hyperlinks */
nav a:link {
    color: #5C7FA3;
    text-decoration: none;
}

nav a:visited {
    color: #344873;
    text-decoration: none;
}

nav a:hover {
    color: #A52A2A;
    text-decoration: none;
}

/* Remove list markers and add left padding to unordered lists in the navigation area */
nav ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}

/* Code styles for the nav li selector */
nav li {
    padding: 0.5em 1em;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

/* Right-column main content area */
main {
    padding: 0.5em 1em;
}

/* Hero image areas */
#homehero,
#yurthero,
#trailhero {
    background-size: 200% 100%;
}

/* Footer area */
footer {
}

/* Section elements */
section {
    padding: 0.5em;
}

/* Hyperlinks in the header area */
header a:link,
header a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

header a:hover {
    color: #90C7E3;
    text-decoration: none;
}

/* Configure styles for the telephone number */
#mobile {
    display: inline;
}

#desktop {
    display: none;
}

@media (min-width: 768px) {
    #mobile {
        display: none;
    }

    #desktop {
        display: inline;
    }
}
