:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 920px;
    background: #f5f6f6;
    border: solid thin #cbcbcb;
}

header {
    position: relative;
}

header>a {
    position: absolute;
    top: 3%;
    left: 3%;
    height: 92%;
    width: 27%;
}

article {
    padding: 16px 40px 0;
}

.white {
    background: #fff;
    padding: 20px 20px 1px;
    border-radius: 20px;
}

.color {
    color: #ccc !important;
}

.margin-bottom {
    margin-bottom: 0;
}

.button {
    width: 170px;
    height: 37px;
    line-height: 37px;
    display: block;
    border: none;
    background: #047e40;
    color: #fff !important;
    margin: 16px auto 3px;
    text-align: center;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 28px;
    margin: 0 0 20px;
    line-height: 1.2;
}

h1 small {
    font-size: 74%;
    display: block;
    margin: 10px 0 0;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 25px 26px;
}

ul li {
    list-style: none;
    text-indent: -26px;
}

ul li:before {
    font-size: 20px;
    margin-right: 26px;
    position: relative;
    top: -1px;
    float: left;
    content: "\25A0";
    color: #b51f29;
}

.left {
    margin-left: 20px;
}

footer {
    padding: 16px 40px 30px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: #d8ddde;
    border-radius: 20px;
    overflow: hidden;
    padding: 0 0 0 20px;
    align-items: center;
}

.footer-flex-content:nth-of-type(1) {
    width: 77%;
}

footer img{
    display: block;
}

@media screen and (max-width: 919px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 840px) {
    article {
        padding: 16px 20px 0;
    }

    h1 {
        font-size: 24px;
    }

    footer {
        padding: 16px 20px;
    }

    .footer-flex {
        flex-direction: column;
        padding: 20px;
    }

    .footer-flex-content {
        width: 100% !important;
    }
}