/* Universal selector */
* {
    box-sizing: border-box;
}

/* Wrapper id */
#wrapper {
    background: linear-gradient(to bottom, #FFFFFF, #90C7E3);
}

/* Body element selector */
body {
    background-color: #EAEAEA;
    background-image: none;
    background-repeat: no-repeat;
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
}

/* Header area */
header {
    height: 120px;
}

/* h1 element selector */
h1 {
    font-size: 3em;
    letter-spacing: 0.25em;
}

/* Left-column navigation area */
nav {
    background-color: inherit;
    float: left;
    width: 160px;
    padding: 0;
    font-size: 1.2em;
}

/* 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;
    padding-left: 1em;
}

/* Fixed position for the navigation */
nav {
    position: fixed;
}

/* Right-column main content area */
main {
    background-color: #FFFFFF;
    margin-left: 170px;
    overflow: auto;
}

/* Hero image areas */
#homehero,
#yurthero,
#trailhero {
    margin-left: 170px;
}

/* Footer area */
footer {
    background-color: #FFFFFF;
    margin-left: 170px;
}

/* Section elements */
section {
    float: left;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;
}

/* Hyperlinks in the header area */
header a:link,
header a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

header a:hover {
    color: #90C7E3;
    text-decoration: none;
}
