
/* ********** CSS RESET ********** */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, 
caption, tbody, tfoot, thead, tr, th, td, picture, source
                  {margin: 0;padding: 0;border: 0;outline: 0;
                  vertical-align: baseline;
                  background: transparent;}
ol, ul            {list-style: none;}


/* ********** STYLES ********** */

*, *:before, *:after {
    box-sizing: inherit;
}

html {
    font-size: 16px;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #FFFFFF;
}


/* ********** Estilos ********** */

.container-body {
    -webkit-display: flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;

    justify-content: center;
    align-items: flex-start;

    width:100%;
    padding-top: 20px;
}

img {
    width: 100%;
    max-width: 900px;
    height: auto;
}


