/* styles for my first wine website */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: lightcyan;
    font-size:100%;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.5;
}

header {
    background: yellow;
    height: 200px;
}

.inner-header {
    width: 940px;
    margin: 0 auto;
}

#logo {
    width: 250px;
    padding-top: 1.5em;
    padding-bottom: .5em;
}

.social {
    float: right;
}

.social li {
    float: left;
    list-style-type: none;
    margin-top: 2em;
    margin-left: 15px;
}

nav {
    height: 50px;
    line-height: 50px;
    background: red;
}

#primary {
    width: 940px;
    margin: 0 auto;
    list-style-type: none;
}

#primary > li {
    float: left;
    /*  6 list items - 100 divided by 6 */
    width:16.66%;
    text-align: center;
    position: relative;
}

#primary a {
    color: white;
    text-decoration: none;
    display: block;
}

#primary a:hover {
    color: black;
    background: lime;
}

.dropdown, .dropdown2 {
    display: none;
    list-style-type: none;
}


#primary li:hover .dropdown {
    display: block;
    position: absolute;
    background: red;
    width: 100%;

}

.dropdown li:hover .dropdown2 {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    background: red;
    width: 100%;

}

#wrapper {
    width: 940px;
    margin: 0 auto;
}

#hero {
    background: pink;
}

.row {
    overflow: hidden;
    margin-bottom: 1.5em;
}

.third {
    width: 300px;
    float: left;
    height: 300px;
    background: orange;
    margin-right: 20px;
}

.third:last-of-type {
    margin-right: 0px;
}

footer {
    border-top: 1px solid green;
    height: 60px;
    line-height: 60px;
}

footer ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    font-size: .875em;
}

footer li {
    margin: 0 10px;
}

img {
    max-width: 100%;
}

/* !!!!!!!!! typography!!!!!!!!!!! */

blockquote {
    font-size: 1.5em;
    font-family:'Times New Roman', Times, serif;
    text-align: center;
    margin: 0 1.5em 1.5em 1.5em;
    line-height: 1.4;
}

.home h1 {
    font-family:'Times New Roman', Times, serif;
    font-size: 3em;
    text-align: center;
    line-height: 1.15em;
    margin-bottom: .2em;
}