/* Michael Cain | CIS133 | Midterm Website Project */

* {box-sizing: border-box;}

body {
   background-color: #eaeaeae1; 
   color: #7c7c7c;
   font-family: 'Segoe UI', Arial;
}

header {
    background-color: #3243c7;
    color: #FFFFFF;
    font-family: 'Lucida Grande', serif;
    height: 120px;
}

header a { text-decoration: none;}

header a:link {color: #FFFFFF;}
header a:visited {color: #FFFFFF;}
header a:hover {color: #c7b632;}

h1 {
    text-align: center;
    padding-top: .5em;
    font-size: 3em;
    letter-spacing: .25em;
    font-family: 'Segoe UI', Arial;
}

h2 {
    color: #5332c7;
    font-family: 'Segoe UI', Arial;
}

h3 {
    color: #3275c7;
    font-family: 'Segoe UI', Arial;
}

nav {
    font-size: 1.2em;
    font-weight: bold;
    padding: 0;
    float: left;
    position: fixed;
    width: 160px;
}

nav ul {
    list-style-type: none;
    padding-left: 0;
}

nav a {
    text-decoration: none;
}

nav li { padding: 1em;}

nav a:link      {color:#3243c7;}
nav a:visited   {color:#5332c7;}
nav a:hover     {color:#c7b632;}

section {
    float: left;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;
}

main {
    padding-left: 2em;
    padding-right: 2em;
    background-color: #FFFFFF;
    margin-left: 170px;
    overflow: auto;
    display: block;
}

dt {
    color: #3243c7;
    font-weight: bold;
}

.company {
    color: #3243c7;
    font-size: 1.2em;
    font-weight: bold;
    font-family: 'Lucida Grande', 'sans-serif';
}

.image-container {
    float: left;
    margin-right: 20px;
}

footer {
    font-size: .70em;
    font-style: italic;
    text-align: center;
    padding: 1em;
    background-color: #FFFFFF;
    margin-left: 170px;
    clear: both;
}

#wrapper {
    background-color: #FFFFFF;
    background-image:  linear-gradient(to bottom, #FFFFFF, #a9b0e9);
    background-repeat: no-repeat; 
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 3px 3px 3px #777;
}


#homehero {
    height: 300px;
    background-image: url(california.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: 170px;
    overflow: hidden;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3243c7;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}