@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: 17px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 846px;
    margin: 1rem auto;
    border: 6px solid #ee1d23;
    background-color: #fff;
    padding: 13px;
    position: relative;
}

.title {
    padding-left: 5px;
    margin-top: 10px;
}

.title :is(h1, p) {
    text-align: center;
}

article {
    padding: 0 0 6px 263px;
}

footer >p {
    text-align: center;
}

.logo {
    width: 226px;
    position: absolute;
    top: 264px;
    left: 20px;
}

.logo p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    line-height: 24px;
    font-weight: normal;
    padding-top: 12px;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 43px;
    line-height: 48px;
    margin: 10px 0 0;
}

h2 {
    margin: 11px 0 0;
    font-size: 18px;
    line-height: 20px;
}

ul {
    list-style: none;
    margin: 0 0 12px;
}

ul li {
    padding-left: 22px;
}

li:before {
    content: "\2010";
    color: #000;
    float: left;
    font-size: 19px;
    text-indent: -22px;
    margin-top: -1px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width: 844px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    .title {
        padding-left: 30%
    }
}

@media only screen and (max-width:648px) {
    :is(.title, article) {
        padding-left: 0
    }

    .logo {
        position: static;
        margin-top: 20px;
        display: flex;
        align-items: flex-end;
        width: auto;
        justify-content: center;
        gap: 1rem;
    }

    .logo p br {
        display: inline;
    }

    br {
        display: none;
    }
}

@media only screen and (max-width:484px) {
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .logo p {
        text-align: center;
    }

    .link {
        white-space: normal !important;
    }
    h1{
        font-size: 2rem;
		line-height: 2.25rem;
    }
}