* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 16px auto;
    border: 1px #231f20 solid;
    max-width: 750px;
    color: #231f20;
    position: relative;
    background: #d1dae1;
    font-family: "Source Serif 4", serif;
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

p {
    padding-bottom: 16px;
    text-align: justify;
    hyphens: auto;
}

h1 {
    margin: 0 0 4px -20px;
    font-size: 26px;
    line-height: 32px;
    background: #223744;
    padding: 10px 16px 10px 20px;
    display: inline-block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
}

h1 small {
    font-size: 18px;
}

h2 {
    font-size: 13px;
}

a {
    color: #231f20;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 15px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-size: 16px;
    text-indent: -12px;
}

.font {
    font-size: 94%;
}

strong {
    font-weight: 700;
}

.logo {
    padding: 14px 0 10px 20px;
}

article {
    padding: 10px 20px 36px;
    margin-top: -190px;
    position: relative;
}

footer {
    padding: 30px 20px 20px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex div {
    width: 340px;
    margin-top: 15px;
}

.flex div:nth-of-type(2) {
    width: 350px;
}

h3 {
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    bottom: -16px;
    right: 220px;
    z-index: 9999;
}

h3 span {
    background: #f68b1e;
    display: inline-block;
    padding: 2px 10px;
    text-align: center;
    transform: rotate(-4deg);
    color: #fff;
    margin: -1px 0 0;
}

footer {
    background-color: #ffffff;
    padding: 36px 40px 16px 50px;
    font-weight: 700;
    color: #000;
    position: relative;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 18px;
    display: flex;
    justify-content: space-between;
    margin: 0 20px 20px;
}

footer div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 50%;
}

footer div:nth-of-type(2) {
    width: 43%;
}

@media only screen and (max-width: 749px) {
    #wrapper {
        border: none;
        font-size: 14px;
        line-height: 19px;
        margin: 0;
    }

    .logo {
        padding: 16px;
    }

    :is(.flex, footer) div {
        width: 100% !important;
    }

    article {
        margin-top: 0;
        padding: 16px;
    }

    .flex {
        display: block;
    }

    article p br {
        display: none;
    }

    .text span {
        font-size: 100%;
    }

    h1 {
        margin: 0 0 10px -16px;
        padding: 12px 16px;
    }

    p {
        text-align: left;
    }

    footer {
        padding: 16px;
        display: block;
        margin: 10px 16px 16px;
    }

    footer div {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    footer p {
        text-align: center;
    }

    h3 {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
        margin: 16px 0 0;
        position: static;
    }
}

@media only screen and (max-width: 520px) {
    header>img {
        max-width: 220px;
    }

    h1 {
        display: block;
    }
}

@media only screen and (max-width: 424px) {
    header>img {
        max-width: 170px;
    }

    h3 {
        font-size: 16px;
        line-height: 22px;
    }
}