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

/* generic elements */

body  {
    color: black;
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5 {
    margin-bottom: 1em;
}

p {
    margin-bottom: 1em;
}

a {
    color: papayawhip;
}


/* specific class names */

.main-navigation {
    overflow: hidden;
    background-color: #A4BFBD;
}

.main-navigation a {
    float: left;
    color: black;
    background: #F2F2EB;
    text-decoration: none;
    padding: 12px 30px;
    border-right: 1px solid rgba(0,0,0,.5);
    transition: background 250ms ease-in-out; /* this animates the background color when the user hovers */
    font-size: 20px;
    font-family: 'Dosis', sans-serif;
}
      
.main-navigation a:hover, .main-navigation a:focus {
    background: #735661;
}

.main-body {
    
    border: 1px solid white;
    max-width: 1200px;
    margin: 2% auto;
    padding: 20px;
    background-color: white;
    }

    .main-body h1 {
        font-family: 'Urbanist', sans-serif;
    color: #36453d;
    font-size: 25px;
    }
    
.left-content    {
    float: left;
    width: 700px;
    
}

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

    
.right-content  {
    float: right;
    width: 450px;
    padding: 15px;
    color: #666;
    border-left: 1px solid #333;
}

.right-content h3 {
    font-family: Georgia, serif;
    color: #36453d;
    font-size: 20px;
}

.right-content h3::first-letter{
    font-size: 200%;
    color: #735661;
}

h3 span {
    font-style: italic;
}

.right-content p {
    font-size: 18px;
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
    line-height: 1.5em;
}

.clearfix {   /* place this after elements with float: left and float: right to "clear" layout issues */
    clear: both;
}
    
footer {
    clear: both;
    font-size: 15px;
    color: #333;
    border-top: 1px solid black;
    font-family: 'Dosis', sans-serif;
    padding-top: 5px;
    background-color: #A4BFBD;
    width: 1200px;
    margin: 0 auto;
}

/* 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;
    }
}
*/