html {
    background: #B8AE9C;
    -webkit-font-smoothing: antialiased;
}

body {
    color: #B8AE9C;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 850px;
}

p {
    margin: inherit;
}

h1 {
    text-align: center;
    margin: 10px;
    color: #595241;
}

a {
    text-decoration: none;
    text-align: right;
    margin: 10px;
    color: #ACCFCC;
}

a:hover {
    color: #FFFFFF;
}

h2 {
    display: inline;
    font-size: 60px;
    margin: 20px;
}

/*-------------------------------------------------------DIVS---------------------------------------------------*/

/* infoleft = blue scrolling info div */

.infoleft {
    position: relative;
    float: left;
    background-color: #ACCFCC;
    width: 440px;
    border: 10px solid #595241;
    border-radius: 5px;
    text-align: left;
    height: 100%;
}

.topimg {
    display: block;
    max-width: 100%;
    width: 300px;
    border-radius: 5px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #595241;
}

.infoleft p {
    color: #595241;
    margin: 10px;
    text-align: justify;
}

.infoleft span {
    font-size: 24px;
    color: #595241;
    vertical-align: middle;
}

.infoleft hr {
    border-top: 1px solid #FFFFFF;
    margin-bottom: 30px;
    margin-top: 50px;
}

.serviceimg {
    width: 100px;
    border: 2px solid #595241;
    border-radius: 5px;
    margin: 20px 10px 50px; 10px;
    height: 80px;
    vertical-align: middle;
}

.infoleft a {
    color: #595241;
    
}

.infoleft a:hover {
    color: #FFFFFF;
}

.colophon {
    font-size: 10px;
}

/* inforight = red fixed div w/ logo, contact, and bio */

.inforight {
    position: fixed;
    top: 0;
    left: 53%;
    background-color: #8A0917;
    width: 335px;
    height: 95%;
    text-align: right;
    border: 5px solid #595241;
    border-radius: 5px;
    padding-bottom: 5px;
}

.inforight p {
    text-align: right;
    margin: 10px;
    margin-top: 20px;
    color: #FFFFFF;
    line-height: 1;
}

.logo {
    max-width: 315px;
    max-height: 40%;
    border-radius: 5px;
    margin: 5%;    
}

.inforight hr {
    border-top: 1px solid #ACCFCC;
}

.profile {
    max-height: 15%;
    margin: 10px;
    margin-left: 25px;
    border-radius: 5px;
    float: left;
}


/*******MEDIA QUERIES*******/


@media (max-width: 860px) { /* ipad view */
    
    .infoleft {
        width: 45%;
    }
    .inforight {
        width: 45%;
    }
    .infoleft span {
        font-size: 15px;
    }
    .serviceimg {
        margin: 20px 10px 0px; 10px;
    }
    
    .logo {
        max-width: 95%;
    }
}

@media (max-width: 635px) { /* mobile view */
    
    .infoleft {
        width: 100%;
        border: 5px;
    }
    .inforight  {
        position: relative;
        width: 100%;
        left: 0;
        text-align: center;
    }
    .inforight a { /* button style for contact links */
        background: #ACCFCC url(/images/alert-overlay.png) repeat-x;
        display: inline-block;
        padding: 5px 10px 6px;
        color: #222;
        text-decoration: none;
        line-height: 1;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-box-shadow: 0 1px 3px #dfeceb;
        -webkit-box-shadow: 0 1px 3px #dfeceb;
        text-shadow: 0 -1px 1px #222;
        border-bottom: 1px solid #ACCFCC;
        position: relative;
        cursor: pointer;
    }
}
