/* Global styles for the document */
body {
    background-color: #fff; /* White background */
    color: #000; /* Black text color */
    font-family: 'Arial Narrow', Arial, Helvetica, sans-serif;
}

/* Styles for the wrapper id */
#wrapper {
    margin: 0 auto;
    width: 80%;
    background-color: #fff; /* White background */
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 3px 3px 3px #333; /* Dark gray shadow */
}

/* Restoring the sun banner background image in the header element */
header {
    background-color: #ffd700; /* Gold header background */
    color: #000; /* Black text color */
    background-image: url('us-army-logo.png'); /* Replace with your US Army logo */
    background-repeat: no-repeat;
    background-position: right;
    height: 60px;
    text-align: center;
    padding-top: 15px;
}

/* Styles for the h1 element */
h1 {
    margin-top: 0;
    color: #ffd700; /* Gold text color */
}

/* Styles for the nav element */
nav {
    background: linear-gradient(to bottom, #000, #000); /* Black gradient navigation bar */
    text-align: center;
    padding: 1em;
}

/* Styles for the main element */
main {
    padding: 20px;
    display: block;
}

/* Styles for the h2 element */
h2 {
    text-shadow: 1px 1px #ccc; /* Light gray text shadow */
    color: #ffd700; /* Gold text color */
}

/* Styles for the footer element */
footer {
    padding: 2em;
    background: linear-gradient(to top, #000, #000); /* Black gradient footer */
    color: #fff; /* White text color */
}

/* Styles for the hero images */
#homehero,
#yurthero,
#trailhero {
    background-size: cover;
}
