/* Global styles for the document */

body {
    /* Configure a "to bottom" CSS gradient background */
    background: linear-gradient(to bottom, #eeeeee, #ffffff);
    /* Stretch the gradient to the bottom of the site */
    background-attachment: fixed;
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
}


/* Styles for the header element */

header {
    background-color: #003058;
    color: #FFFFFF;
    font-family: Georgia, serif;
}


/* Styles for header h1 */

header h1 {
    line-height: 140%;
    padding: 0.5rem;
    /* Configure the background image */
    background-image: url('utahtechlogo.svg');
    background-position: right;
    background-repeat: no-repeat;
    /* Set left padding */
    padding-left: 1em;
    /* Configure background-origin */
    background-origin: content-box;
    /* Remove margin bottom to eliminate space */
    margin-bottom: 0;
}


/* Styles for the nav element */

nav {
    font-weight: bold;
    background-color: #F3F3F3;
    /* Configure padding */
    padding: 0.5rem 2rem 0.5rem 0.5rem;
}


/* Styles for the h2 element */

h2 {
    color: #424242;
    font-family: Georgia, serif;
}


/* Styles for the dt element (used on students page) */

dt {
    color: #003058;
    font-weight: bold;
}


/* Styles for the .ut class */

.ut {
    color: #BA1C21;
    font-weight: bold;
}


/* Styles for the footer element */

footer {
    font-size: 0.70rem;
    font-style: italic;
    text-align: center;
    /* Set padding for the footer */
    padding: 1rem;
}


/* Style for the #wrapper ID */

#wrapper {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    /* Configure background-color */
    background-color: #ffffff;
    /* Configure minimum and maximum width */
    min-width: 960px;
    max-width: 2048px;
    /* Add a box-shadow effect */
    box-shadow: 0px 3px 3px rgba(66, 66, 66, 0.3);
}


/* Style for the h3 element */

h3 {
    color: #003058;
}


/* Style for the main element */

main {
    /* Configure padding for left and right */
    padding: 0 2rem;
}


/* Style for the homehero ID */

#homehero {
    /* Configure height */
    height: 300px;
    /* Display the homehero.jpg background image and center it */
    background-image: url('homehero.jpg');
    background-size: cover;
    background-position: center;
}


/* Style for the studenthero ID */

#studenthero {
    /* Configure height */
    height: 300px;
    /* Display the studenthero.jpg background image and center it */
    background-image: url('studenthero.jpg');
    background-size: cover;
    background-position: center;
}


/* Style for the facultyhero ID */

#facultyhero {
    /* Configure height */
    height: 300px;
    /* Display the facultyhero.jpg background image and center it */
    background-image: url('facultyhero.jpg');
    background-size: cover;
    background-position: center;
}


/* Prevent hyperlinks in the nav area from displaying the default underline */

nav a {
    text-decoration: none;
}