/* Webigno Software House - Main CSS
   Mobile-First Responsive Design
   Pure CSS3 Implementation */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    min-height: 100vh;
}
body{
    background: #eee7d9;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
img{
    width: 100%;
    height: auto;
}
/*--------LOGO-----------*/

#logo{
    margin: 0;
    padding: 0;
    display: inline-block;
    text-align: center;
    width: 100%;

}
#logo img{
    max-width: 50em;
    width:95%;
}
/*---------CONTENT-------*/
#content{
    width: 100%;
}
#content > p:first-child{
    margin-top: 0;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    font-family: TT Norms Pro, Body, and Otoiwo Grotesk, sans-serif;
}

#content > p:not(:first-child):not(:last-child){
    margin: 1em 0 10em 0;
    text-align: center;
    font-size: 0.9em;
}
#content > div{
    width: 100%;
    position: absolute;
    height: 8em;
    bottom: 0;
    margin: 0;
    padding: 0;
    background-image: url('../img/chameleon.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-position-y: 50%;
    overflow: auto;
}
#content > div > p{
    display: inline-block;
    text-align: right;
    font-size: 0.9em;
    width: 49%;
    vertical-align: top;
}
