/* This is the stylesheet for the final project */

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    background: black;
}

header {
    
    padding-top: 5px;
    z-index: 1;
    position:fixed;
    top:0;
    margin-left: 10%;
    width:40%;

}

.symbol {
    max-width: 47%;
    display: block;
    margin: 15px auto 0 auto;
}

nav {
    height:70px;
    width: 100%;
    line-height:70px;
    position: fixed;
    display:flex;
    
    top:0;
    background: rgba(184, 184, 184, 0.85);
    
}

nav ul {
    display:flex;
    margin-left: 50%;
}

.dropdown {
    
    display:none;

    
}

nav li:hover .dropdown {
    
    display:block;
    position: absolute;
    top:70px;
    z-index:1;
    width:160px;
    list-style-type: none;
    background: #eeeeee70;
}


nav li {
    
    font-size: 0.9em;
    list-style-type: none;
    
    margin-left: 0px;
    text-align:center;
    position: relative;
    
    width:80px;
    
}

nav li a {
    text-decoration: none;
    color:black;
}

#wrapper {
    
    width:940px;
    margin: 20px auto;
    margin-bottom: 100px;
    margin-top: 150px;
    
}

form {
    width:300px;
    margin: auto;
    align-items: center;
}

form li {
    margin-bottom: 15px;
}

label {
    color: white;
    margin-bottom: 5px;
    display:block;
    font-weight: bold;
    font-size: 1.1em;
}


input[type=submit] {
    width:auto;

}

main {
    width: 580px;
    float: left;
    margin-top: 40px;
    margin-bottom: 150px;
   
}


aside {
    width:340px;
    float: right;
    margin-top: 40px;
    margin-bottom: 150px;
    padding-left: 20px;
}

#cart {
    line-height:60px;
    text-align: center;
   
    width:170px;
    height:60px;
    background-color: #666;
}

.row {
    clear: both;
    overflow: hidden;
    margin-bottom: 40px;
}

.third {
    width:300px;
    margin-right:20px;
    float: left;
}

.third:last-of-type {
    margin-right: 0;
}


footer {
    height: 200px;
    line-height: 200px;
    clear:both;
    display:flex;
    justify-content: center;
    left:180px;
    background:#747373;
}

footer ul {
    display:flex
}


footer li {
    margin: 0 30px;
    list-style-type: none;
}

img {
    max-width:100%;
    display: block;
    margin: auto;
}

/* Typography */

h1, h2, p, li {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

h4, h5, h6 {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

h1, h2, p {
    color: #eee;
}

li, h1 {
    font-weight: bold;
}

h1 {
    
    text-align: center;
    margin-bottom: 60px;
}

h2 {
    
    text-align: center;
    margin-bottom: 40px;
}

h4 {
    font-size: 1.7em;
    margin-bottom:50px;
    color:#eee;

}

h5 {
    font-size:1.2em;
    color:#666;
    margin-bottom:10px;
}

h6 {
    font-size:1em;
    color:#666;
    margin-bottom: 40px;
}



p {
    margin-top:40px;
}