/* Universal Selector */
* {
    box-sizing: border-box;
}

/* Wrapper ID */
#wrapper {
    background: linear-gradient(white, #90C7E3);
}

/* Body Element Selector */
body {
    background-color: #EAEAEA;
}

/* 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;
}

nav a:visited {
    color: #344873;
}

nav a:hover {
    color: #A52A2A;
}

/* Remove List Markers and Add Left Padding for Navigation Lists */
nav ul {
    list-style-type: none;
    padding-left: 1em;
}

/* Make the Navigation Fixed Position */
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 Element Selector */
section {
    float: left;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;
}

/* Hyperlinks in the Header Area */
header a:link,
header a:visited {
    text-decoration: none;
    color: #FFFFFF;
}

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