@font-face {
    font-family: 'dobra';
    src: url("./fonts/dobra/dobra-light.eot");
    src: url("./fonts/dobra/dobra-light.eot?#iefix") format("embedded-opentype"), url("./fonts/dobra/dobra-light.woff2") format("woff2"), url("./fonts/dobra/dobra-light.woff") format("woff"), url("./fonts/dobra/dobra-light.ttf") format("truetype"), url("./fonts/dobra/dobra-light.svg#dobra-light") format("svg");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'dobra';
    src: url("./fonts/dobra/dobra-bold.eot");
    src: url("./fonts/dobra/dobra-bold.eot?#iefix") format("embedded-opentype"), url("./fonts/dobra/dobra-bold.woff2") format("woff2"), url("./fonts/dobra/dobra-bold.woff") format("woff"), url("./fonts/dobra/dobra-bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal
}

* {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    zoom: 1;
    box-sizing: border-box
}

html,
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh
}

body:before,
body::after {
    content: '';
    background: transparent url("./grafismo@2x.png") no-repeat;
    background-size: contain;
    display: block;
    width: 25vw;
    height: 50vh;
    position: fixed
}

@media screen and (max-width: 800px) {

    body:before,
    body::after {
        width: 50vw;
        height: 100vh
    }
}

body:before {
    background-position: left top;
    top: -8vh;
    left: -5vw
}

body::after {
    background-position: right bottom;
    bottom: -12vh;
    right: -5vw
}

section {
    width: 50vw;
    margin-top: -10vh;
    padding: 2em;
    font-family: 'dobra';
    text-align: center;
    font-size: 16px
}

@media screen and (max-width: 800px) {
    section {
        width: 90vw;
        font-size: 12px
    }
}

section h1 {
    margin-bottom: 1em;
    animation: fadeIn 1s ease-in-out
}

section h1:nth-of-type(2) {
    margin-bottom: 0;
    color: #414241;
}

section h1 span:first-child {
    background: transparent url("./logo-anbima.png") no-repeat center center;
    background-size: contain;
    display: inline-block;
    overflow: hidden;
    text-indent: -999px;
    width: 8em;
    height: 3.5em;
    margin-bottom: -2px
}

section h1 span:last-child {
    color: #414241;
    font-weight: 300;
    font-size: 1.4em;
    display: inline-block;
    padding: 0.05em 0.42em
}

@media screen and (min-width: 400px) {
    section p {
        color: #707070;
        font-size: 1.5em;
        line-height: 1.5;
        animation: fadeIn 1s ease-in-out;
        animation-delay: .03s
    }

    section a,
    section a:visited {
        color: #0089C4;
        text-decoration: none
    }

    section a:hover {
        text-decoration: underline
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(1em) scale(0.9)
        }

        to {
            opacity: 1
        }
    }
}