@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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: local(''), 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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    border: 4px solid #f5895b;
    background: #fccfb7;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px;
}

header {
    padding: 26px 12px;
    width: 100%;
    background: #fff;
    margin: 0 0 16px;
}

:is(article, footer) {
    padding: 10px 12px;
    width: 49%;
    background: #fff;
}

.center {
    text-align: center !important;
    color: #f5895b;
    margin: 21px 0;
}

.mobile {
    display: none;
}

.color span {
    color: #f5895b;
    margin-left: 10px;
}

.logo {
    position: relative;
}

.logo div {
    position: absolute;
    bottom: 0;
    right: 6px;
    z-index: 9;
}

p:not(:last-of-type) {
    margin: 0 0 15px;
    text-align: justify;
    hyphens: auto;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    color: #f5895b;
}

h2 {
    margin: 0 0 10px;
    font-size: 1.1125rem;
    text-align: justify;
    hyphens: auto;
}

h2 span {
    white-space: nowrap;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media all and (max-width: 928px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, h2) {
        text-align: left !important;
        text-wrap: pretty;
    }

    .logo div {
        right: 0;
    }
}

@media all and (max-width: 920px) {
    #wrapper {
        display: block;
    }

    header {
        padding: 12px 16px;
    }

    article {
        width: 100%;
        padding: 16px 16px 1px;
    }

    footer {
        width: 100%;
        padding: 1px 16px 16px;
    }

    .logo {
        display: flex;
        align-items: flex-end;
        gap: 30%;
    }

    .logo div {
        position: static;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: inline;
    }
}

@media all and (max-width: 700px) {
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .logo p {
        text-align: center !important;
    }
}