/* style sheet for the wine website */

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

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on November 19, 2023 */

@font-face {
    font-family: 'alex_brushregular';
    src: url('../fonts/alexbrush-regular-webfont.woff2') format('woff2'),
         url('../fonts/alexbrush-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    /* background:orange; */

    background-image: url(../images/river2.jpg);
    background-repeat:repeat-y;
    /* background-position: 220px 0; */
}

header {
    background:rgba(21, 21, 21, .7);
    width: 180px;
    height:100%;
    position:fixed;
    top:0;
    left:0;
}

nav li {
    height:40px;
    line-height:40px;
    background:#800;
    position: relative;
}

.drop-down {
    display:none;
}

nav li:hover .drop-down {
    display:block;
    position:absolute;
    top:0;
    left:120px;
    list-style-type: none;
    z-index:1;
    width:125px;
}

nav a  {
    color:#fff;
    padding-left:15px;
    text-decoration: none;
    display:block;
}

nav a:hover {
    background:#500;
}

footer {
    height:60px;
    line-height:60px;
    width:100%;
    position:fixed;
    bottom:0;
    left:180px;
    background:rgba(21, 21, 21, .7);
}

footer li {
    float:left;
    margin-right:30px;
    list-style-type: none;
    color:tan;
}

footer a {
    color:tan;
    text-decoration: none;
}

footer img {
    margin-top:2px;
}

#logo {
    margin-top:100px;
    display:block;
    max-width:100%;
    margin-bottom:30px;
    /* remember, if the image is too big, call it max width */
}

.row {
    background:beige;
    padding:20px;
    /* because I have three boxes that are floating, I need to call out the overflow hidden */
    overflow:hidden;
    /* height:400px; */
    clear:both;
}

.third {
    width:300px;
    /* height:300px;  */
    background:pink;
    margin-right:20px;
    float:left;
}

.asthird {
    width:93.33px;
    margin-right:10px;
    float:left;
}

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


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

img.left {
    float:left;
    margin:0 10px 10px 0;
}

img.right {
    float:right;
    margin:0 0px 10px 10px;
}

.third:last-of-type {
    margin-right:0px;
}
    
#wrapper {
    margin:140px 0 80px 200px;
    /* padding:20px; */
    /* background:yellow; */
    /* this compensates for the 20 + 20 from box sizing border box */
    width:980px;


}

main {
    width:580px;
    float:left;
    /* height:600px; */
    /* background:lightblue; */
}

aside {
    width: 340px;
    float:right;
    height:400px;
    /* background:salmon; */
}

.col-4 {
    width:224px;
    margin-right:10px;
    float:left;
}

.col-4:last-of-type {
    float:right;
}


/* img.four  {
    margin-right:10px;
    display:block;
    max-width:100%;

} */



/* Typography */

h1 {
    font-family: 'alex_brushregular';
    text-align: center;
    font-size:4em;
    margin-bottom:-20px;
    font-weight:200;
    color:#800;
}

h2 {
    color:#800;
    margin-bottom:20px;
}

h3 {
    color:#800;
    margin-bottom:20px;
}

.third {
    text-align:center;
}

span {
    display:block;
    text-align: center;
    font-style:italic;
 }

 span a {
    color:brown;
    font-size:1em;
    font-weight:bold;
 }

 blockquote {
    margin-bottom: 20px;
    font-size:1.5em;
    border-left: 20px solid tan;
    padding-left:20px;
    margin-right:30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: italic;
 }

 p {
    margin-bottom:10px;

 }
