@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 577px;
    margin: 1rem auto;
    border: 3px solid #6E737A;
    overflow: hidden;
    background-color: #fff;
}

h1 {
    margin: 10px 0;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
    color: #F24D39;
}

h1 span {
    font-size: 18px;
    line-height: 0;
}

.flex p {
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 5px 0 0;
    flex-wrap: wrap;
}

.logo {
    position: absolute;
    top: 2%;
    left: 2%;
}

header p {
    text-align: justify;
    hyphens: auto;
}

header {
    padding: 10px 18px 0 191px;
}

article {
    padding: 0 20px 10px;
}

footer p {
    text-align: center;
    color: #fff;
    font-size: 18px;
}

footer a {
    color: #fff !important;
}

footer {
    padding: 10px 16px;
    background: #6E737A;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

p span {
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media (max-width:576px) {
    #wrapper {
        hyphens: auto;
        margin: 0;
        border: none;
    }

    header p {
        text-align: left;
    }
}

@media (max-width:525px) {
    header {
        padding: 10px 16px 0;
    }

    .logo {
        position: static;
        display: flex;
        justify-content: center;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}