/*@import url(https://fonts.googleapis.com/css?family=Libre+Baskerville);*/

body{
    background-color: #f8ffb0;
    margin: 0;      /*-20rem;*/
    padding: 0;     /*I asked for help from 2 tutors, asst, and instructor. None responded within 24-48 hrs. I spent 8 hours trying to make this not break on the right edge when the window is minimized (I tried Bro Lybbert's background centering CSS Deck in the readings - plus all the other CSS Decks from this week's readings that I thought would apply. The bkgd-centering CSS Deck broke much of the page) URL - http://cssdeck.com/labs/bg-centering*/
    
    min-width: 870px;
    font-family: "Myriad Pro", Arial, sans-serif;
    overflow: scroll;

}

/*.center{
    /*width: 1020px;
    margin: auto;
}*/

header{
    background-color: #52471b;
    height: 70px;
    width: 100%; /*was auto*/
    display: block;
    border-bottom: 5px solid #87752d;
    text-align: center;

}

header img{
    display: block;
    padding-top: 25px;
    padding-bottom: 5px;
    margin: 0 auto;
}

header div{
    background-color: #ffcc00;
    margin-top: -102px;
    height: 85px;
    display: block;    
}

header h1{
    margin-top: 50px;
    font-weight: normal;
    padding-top: 50px;
    text-align: center;
    font-size: 1em;
    color: #87752d; 
}

nav{    
    font-family: sans-serif;
    line-height: .25em;
    text-align: center;
    background-color: #87752d;
    border-top: 2px solid #52471b;
    border-bottom: 2px solid #52471b; 
    box-shadow: 0px 2px 4px #808080; /*#d3d3d3;*/
}

nav ul{
    text-align:center;
    list-style-type: none;

}

nav li{
    margin-left: 20px;
    font-size: 1.3em;
    display: inline-block;
    background-color: #87752d;

}

nav a:link{
    font-weight: bold;
    color: #f6f4b2;
    text-decoration: none;
    
}

nav a:visited{
    color: #ffff99;   

}

nav a:hover{
    color: #ffff66;
    
}

nav a:active{ 
    color: #ffffff;
    
}

main{
    margin: 135px 0px 0px 0px;
    padding: 45px 0px 0px 0px; /*45px 0px 80px 30px;*/
   
}

.row{
    text-align: center;
    
    }

.column{
    display: inline-block;
    width: 200px;
    color: #87752d;
    padding: 0px;
    background-position: bottom;
  
}

figure{
    margin-bottom: 30px;
    width: 187px;
    height: 296px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px;
    background-color: #87752d;
    
}

figcaption{
    display: block;
    margin: -5px;
    width: 187px;
    color: #f8ffb0;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 4px 5px;
    background-color: #87752d
    
}

#quote{
    display: block;
    margin: 45px auto 140px auto;
    font-size: 1.9em;
    font-weight: bold;
    font-style: italic;
    width: 552px;
    color: #663333;
    clear: left;
    text-align: center;
    
}

footer{
    color: #ffcc00;
    font-weight: bold;
    text-align: center;
    margin-top: 140px;
    /*margin-bottom: 0;*/
    line-height: .3em;
    border-top: 5px solid #87752d;
    background-color: #52471b;
    padding: 28px;
    /*position: fixed; I cannot get the footer to stay all the way at the bottom and still maintain the correct amount of space between the blockquote and footer. 
    bottom: 0px;*/
}
