/*font-family: 'Lato', sans-serif;
font-family: 'Rock Salt', cursive;*/

body {
    overflow-x: hidden;
    background-color: #f2eee0;
}

header {    
    background-image: url("images/header2.jpg");
    height: 200px;
    width: 100%;
    border: medium solid #000000;
}

h1 {
    font-family: 'Rock Salt', cursive;
    font-size: 1.9em;
    text-align: center;
    padding-top: 75px;
    text-shadow: -2px 2px 6px #FFFFFF;
}

h2 {
    font-size: 1.5em;
    font-family: rock salt, cursive;
    padding: 40px 20px;
}

ul li, ol li {
    text-decoration: none;
    font: 'Lato', sans-serif;
    padding: 20px;
}

a:hover {
    color: #5e0a0a;
}

footer a:hover  {
    color: black;
}

a {
    text-decoration: none;
    color: black;
    font-size: 1.3em;
}

footer {
    background-color: #5e0a0a;
}

footer p, footer a {
    color: antiquewhite;
    text-align: center;
    line-height: 40px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 20px 0px;
    font-size: 1.3em;
}

#content {
    display: flex;
    justify-content: space-around;
}

#middle {
    text-align: center;
}

#bottom {
    text-align: right;
}

@media only screen and (max-width: 600px) {
    #content {
        display: block;
    }
    #top h2 {
        text-indent: inherit;
    }
    
    #top {
        background-color: #f2eee0;
    }
    
    #middle {
        background-color: #c8e6f5;
        text-align: inherit;
    }
    
    #bottom {
        background-color: #5ca0d3;
        text-align: inherit;
    }
    
}