@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-condensed-v25-latin-300.eot');
    src: url('../fonts/roboto-condensed-v25-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-300.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-300.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-300.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-300.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-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-v25-latin-700.eot');
    src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 704px;
    margin: 1rem auto;
    border: 2px solid #000;
    background-color: #fff;
}

header {
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.title {
    padding: 16px 10px;
    background: #f34497;
    margin-top: 21px;
}

.title :is(p, h1) {
    color: #fff;
}

.title p {
    font-size: 18px;
    line-height: 24px;
}

.content {
    padding: 35px 16px 6px;
}

.font-size {
    font-size: 17px;
    line-height: 21px;
}

.font-size span:nth-of-type(1) {
    color: #EC028D;
}

p {
    text-align: justify;
    hyphens: auto
}

footer {
    padding: 10px 16px;
    background: #000;
    position: relative;
}

footer p {
    color: #fff;
    font-size: 17px;
}

.logo {
    position: absolute;
    bottom: 4px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

p:not(:first-of-type) {
    margin-top: 6px;
}

h1 {
    font-size: 30px;
    line-height: 1.2;
    margin: 5px 0 0;
    font-weight: 700;
    padding-left: 16px;
}

h1 small {
    display: block;
}

h1:before {
    content: '\2010';
    float: left;
    font-size: 32px;
    text-indent: -16px;
    margin-top: -5px;
}

img {
    max-width: 100%;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:703px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(header, .title, .content, footer) {
        padding: 16px;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
        text-align: left;
    }

    p span {
        white-space: nowrap;
    }

    :is(footer p, .font-size) {
        text-align: center;
    }

    .logo {
        position: static;
        display: flex;
        justify-content: center;
        padding-top: 10px;
        align-items: center;
    }

    h1 {
        font-size: 27px;
    }
}