@font-face {
    font-display: swap;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ubuntu-v20-latin-regular.eot');
    src: url('../fonts/ubuntu-v20-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2'), url('../fonts/ubuntu-v20-latin-regular.woff') format('woff'), url('../fonts/ubuntu-v20-latin-regular.ttf') format('truetype'), url('../fonts/ubuntu-v20-latin-regular.svg#Ubuntu') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ubuntu-v20-latin-700.eot');
    src: url('../fonts/ubuntu-v20-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'), url('../fonts/ubuntu-v20-latin-700.woff') format('woff'), url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'), url('../fonts/ubuntu-v20-latin-700.svg#Ubuntu') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 515px;
    margin: 1rem auto;
    border: 2px solid #57585a;
    background-color: #fff;
    padding: 25px;
}

.banner {
    margin: 0 -25px 20px;
}

article {
    padding: 15px 0;
}

.title {
    padding: 25px 0 15px;
}

.title :is(p, h1) {
    text-align: center;
}

footer {
    padding: 10px 0 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

p {
    text-align: justify;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 40px;
    line-height: 1.1;
    margin: 10px 0 0;
}

h2 {
    font-size: 16px;
    line-height: 24px;
}

footer ul {
    list-style: none;
    margin-top: 5px;
}

footer ul li {
    padding-left: 15px;
    margin-bottom: 10px;
}

footer ul li:before {
    content: "\2010";
    color: #000;
    float: left;
    font-size: 23px;
    text-indent: -15px;
}

ul {
    list-style: none;
    margin-top: 5px;
}

ul li {
    padding-left: 15px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 23px;
    text-indent: -15px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.color {
    color: #58585a;
}

@media only screen and (max-width:515px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
    }

    .banner {
        margin: 0 -16px 16px
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    p {
        text-align: left;
    }

    .flex {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .flex p br {
        display: none
    }
}