
/*Colors ---
cream: #D9D2C5
light blue: #92A4A6
light tan: #BF8450
medium brown: #734124
dark brown: #401D15 // rgb(64, 29, 21)*/

* {                /* global reset */
    margin: 0;
    padding: 0;
}

/* generic elements */

body  {
    width: 100%;
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
    background-image: url("../images/header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #260E0C;
    
}

img {
    width: 100%;
    border: 4px solid #D9D2C5;
}

iframe {
    border: 4px solid #D9D2C5;
}

p {
    color: #260E0C;
    margin-bottom: 1em;
    font-size: 18px;
    font-family: Georgia;
}

a {
    font-family: Georgia;
    font-size: 18px;
    margin: auto;
    text-align: center;
    text-decoration: none;
    color: #BF8450;
}

figcaption {
    padding: 1% 2% 1% 1%;
    width: 97%;
    color: #401D15;
    border: 4px solid rgb(146, 164, 166);
    font-size: 18px;
    background-color: rgba(146, 164, 166, 0.6);
}


/* specific class names */

header {
    width: 100%;
    background-color: #736E55;
}

.title {
    color: #D9D2C5;
    margin: auto;
    padding: 0.7%;
    font-size: 28px;
    float: left;
}

section {
    position: relative;
}

.main-navigation {
    display: block;
    margin: auto;
    text-align: right;
    /*border-collapse: none;*/
    padding: 1%;
    overflow: hidden;
}

.main-navigation a {
    /*float: left;*/
    /*display: block;*/
    margin: auto;
    font-size: 22px;
    color: #D9D2C5;
    background: #734226;
    text-decoration: none;
    padding: 12px 30px;
    transition: background 250ms ease-in-out; /* this animates the background color when the user hovers */
}
      
.main-navigation a:hover, .main-navigation a:focus {
    background: #401D15;
}

.main-body {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 1%;
    /*border: 1px solid #999;*/
    
}

.main-body h2 {
    padding: 2% 2% 2% 0;
    font-size: 40px;
    text-align: left;
    color: #401A12;
}
    
.left-content    {
    padding-right: 1%;
    line-height: 30px;
    float: left;
    width: 800px;
}

.left-content p {

}

.main-image {  /*this removes the line-height beneath the image*/
    display: block;
}   

    
.right-content  {
    float: right;
    width: 350px;
    height: 100%;
    padding: 15px;
    color: #D9D2C5;
    border: 4px solid #401D15;
    background-color: rgba(64, 29, 21, 0.6);
}

h3 {
    padding-bottom: 2%;
    color: #BF8450;
    font-family: Georgia, serif;
    font-size: 22px;
}

.right-content p {
    line-height: 25px;
    color: #D9D2C5;
}

#works h3, a {
    color: #D9D2C5;
}

.clearfix {   /* place this after elements with float: left and float: right to "clear" layout issues */
    clear: both;
}
    
footer {
    /*display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    clear: both;
    font-size: 15px;
    color: #D9D2C5;
    background-color: #260E0C;*/
}

#autumn {
    border: 4px solid #D9D2C5;
}

/* uncomment the following block to add responsive styles for mobile devices */


/*@media screen and (max-width: 480px) {
    body {
        background-color: peachpuff;
        color: hotpink;
    }

    .main-navigation {
        background-color: chartreuse;
    }

    .main-navigation a {
        background-color: aqua;
    }
}*/
