/* Global styles for the document */
* {
    box-sizing: border-box;
}

body {
    background-color: #EAEAEA;
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
}

/* Styles for the wrapper ID */
#wrapper {
    min-width: 960px;
    max-width: 2048px;
    margin-right: auto;
    margin-left: auto;
    background-color: #FFFFFF;
    background-image: linear-gradient(to bottom, #FFFFFF, #90C7E3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Styles for the header element */
header {
    background-color: #002171;
    color: #FFFFFF;
    font-family: Georgia, serif;
    height: 120px;
}

/* Styles for the h1 element */
h1 {
    font-size: 3em;
    letter-spacing: 0.25em;
    line-height: 200%;
}

/* Styles for the nav element */
nav {
    font-weight: bold;
    float: left;
    width: 160px;
    padding: 0;
    font-size: 1.2em;
    position: fixed;
}

nav a:link {
    color: #5C7FA3;
}

nav a:visited {
    color: #344873;
}

nav a:hover {
    color: #A52A2A;
}

nav ul {
    list-style-type: none;
    padding-left: 1em;
}

/* Styles for the h2 element */
h2 {
    color: #1976D2;
    font-family: Georgia, serif;
}

/* Styles for the dt element */
dt {
    color: #002171;
    font-weight: bold;
}

/* Styles for a class named resort */
.resort {
    color: #1976D2;
    font-size: 1.2em;
}

/* Styles for the main element */
main {
    padding: 2em 2em;
    display: block;
    background-color: #FFFFFF;
    margin-left: 170px;
    overflow: auto;
}

/* Hero image styles */
#homehero, #yurthero, #trailhero {
    height: 300px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-left: 170px;
}

#homehero {
    background-image: url('coast.jpg');
}

#yurthero {
    background-image: url('yurt.jpg');
}

#trailhero {
    background-image: url('trail.jpg');
}

/* Styles for the footer element */
footer {
    font-size: 0.70em;
    font-style: italic;
    text-align: center;
    background-color: #FFFFFF;
    margin-left: 170px;
}

/* Section styles */
section {
    float: left;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;
}

/* Hyperlink styles in the header */
header a:link, header a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

header a:hover {
    color: #90C7E3;
}
