@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 650px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #090b0b;
    padding: 0 40px 30px;
}

figure {
    margin: 0 -40px;
}

article {
    position: relative;
}

.flex {
    display: flex;
    gap: 35px;
    margin-top: -49px;
    align-items: flex-start;
}

.flex p {
    width: 65%;
    font-size: 17px;
    line-height: 22px;
}

.flex p a {
    font-weight: 700;
    color: #29c3bf !important
}

.logo {
    position: absolute;
    bottom: 0;
    right: 0;
}

footer {
    padding: 10px 0 0;
    margin: 15px 0 0;
    border-top: 2px solid #515659;
}

footer p {
    text-align: justify;
    font-size: 104%;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 21px;
    line-height: 24px;
    margin: 0;
}

h2 {
    font-size: 18px;
    line-height: 24px;
    padding: 25px;
    text-align: center;
    font-weight: 400;
}

h2 span {
    display: block;
    color: #29c3bf;
    font-size: 19px;
}

ul {
    list-style: none
}

ul li {
    padding-left: 19px;
}

li:before {
    content: "\2022";
    color: #fff;
    float: left;
    font-size: 23px;
    text-indent: -19px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:650px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
    }

    figure {
        margin: 0 -16px
    }

    .flex p {
        font-size: 15px;
        line-height: 19px;
        width: 80%;
    }

    article br {
        display: none
    }

    p {
        hyphens: auto;
        text-wrap: pretty
    }

    p span {
        white-space: nowrap;
    }

    footer p {
        text-align: left;
    }
}

@media only screen and (max-width:490px) {
    .flex {
        flex-direction: column-reverse;
        gap: 16px;
        align-items: center;
    }

    .flex p {
        width: auto;
    }

    .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 16px
    }
}