:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 720px;
    margin: 16px auto;
    border-radius: 15px;
    border: 3px solid #4f81bd;
    padding: 16px 16px 1px;
    background: #fff;
    position: relative;
}

header {
    padding: 0 0 25px 15px;
}

article {
    padding: 0 180px 0 0;
}

footer {
    display: flex;
    align-items: center;
    gap: 135px 10px;
    flex-direction: column;
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 18px;
}

p {
    margin: 0 0 16px;
    text-align: justify;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #4376b3;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #4376b3 !important;
}

.center {
    text-align: center;
}

@media all and (max-width: 719px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    p {
        text-align: left;
        hyphens: auto;
    }

    br {
        display: none;
    }

    p span {
        white-space: nowrap;
    }
}

@media all and (max-width: 575px) {
    article {
        padding-right: 0;
    }

    footer img {
        width: 24%;
    }

    footer {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0;
    }
}