@charset "UTF-8";
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --size-300: 0.75rem;
    --size-400: 1rem;
    --size-500: 1.33rem;
    --size-600: 1.77rem;
    --size-700: 2.15rem;
    --size-800: 2.25rem;
    --size-900: 2.8rem;
    --space: 5;
}
html, body {
    font-size: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    background: linear-gradient(to bottom, #f3f3f3 0%, white 100%);
}
body {
    max-width: 100%;
    font:
        normal 18px/45px 
        Roboto,
        Arial,
        Helvetica,
        sans-serif,
        -apple-system,
        BlinkMacSystemFont;
    background: #f3f3f3;
    color: #252525;
    line-height: 1.5;
    padding: 0;
}
.containe#containe {
    --red: 255;
    --green: 255;
    --blue: 255;
    --aa-brightness: ((var(--red) * 299) + (var(--green) * 587) + (var(--blue) * 114)) /
        1000;
    --aa-color: calc((var(--aa-brightness) - 128) * -1000);
    background: rgb(var(--red), var(--green), var(--blue));
    color: rgb(var(--aa-color), var(--aa-color), var(--aa-color));
}

/* opt */
@supports (font-size-adjust: 1;) {
    article {
        font-size-adjust: 0.5;
    }
}
article p {
    /*line-height: calc(1ex / 0.32);*/
    line-height: calc(1.4 + var(--space) / 100);
    letter-spacing: calc(1em * (var(--space) / 200));
    word-spacing: calc(1em * (var(--space) / 100));
}
.containe {
    height: auto;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    color: #00000c;
    background-color: #fff;
}

.alinea {
    text-align: justify;
}
.containe p {
    width: 100%;
    margin: 0;
    padding: 0;
}
img, h1, h4 {
    display: inline-block;   
}
/* -- . -- */
.control-resize {
    position: relative;
    left: 10%;
    width: 70%;
    margin-top: 50px;
    border-bottom: 1px solid #000;
    display: grid;
    grid-template-columns: 100%;
    grid-auto-flow: column;
    line-height: 1;
    text-align: right;
}
.control-resize a {
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    padding: 15px;
    color: #333;
    display: inline-block;
    line-height: 14px;
}

.control-resize a#masF, .control-resize a#menosF {
    border: 1px solid #94b8d5;
    border-radius: 50%;
    font-weight: 600;
    background-color: #e5ebf0;
    cursor: pointer;
}

.control-resize div input {
    border: 1px solid #94b8d5;
    border-radius: 20%;
}
#print {
    border: 1px solid #94b8d5;
    border-radius: 10px;
    background-color: #e5ebf0;
    padding: 14px 6px;
    cursor: pointer;
    opacity: 0.8;
    /* font-size: 16px;  */
    line-height: 1;
}
#print:hover {
    opacity: 1;
}

:focus {
    outline: none;
}
h1, h2, h3 {
    font-family: -apple-system, BlinkMacSystemFont, Ubuntu, roboto, arial, sans-serif;
    line-height: 1.3;
    font-weight: 600;
    font-size: var(--size-700);
}
h2, h3 {
    font-size: var(--size-600);
}
img {
    max-width: min(55rem, 100%);
}
blockquote {
    padding-left: var(--size-600);
    border-left: 5px solid;
    font-style: italic;
}
::selection {
    color: #fff;
    background: rgba(91.4%, 58.8%, 47.8%, 0.99);
}
.flow p {
    max-width: 98%;
    margin-top: 0.5em;
}
 
/* ---------------------------- */
@media screen and (max-width: 600px) {
    .control-resize {
        width: 80%;
    }

    h1 {
        font-size: var(--size-700);
        padding: 1%;
    }

    img, h1, h3 {
        display: block;
    }

    .containe {
        height: auto;
        margin-top: 30px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

 