@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v23-latin-regular.eot');
    src: url('../fonts/poppins-v23-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v23-latin-regular.woff2') format('woff2'), url('../fonts/poppins-v23-latin-regular.woff') format('woff'), url('../fonts/poppins-v23-latin-regular.ttf') format('truetype'), url('../fonts/poppins-v23-latin-regular.svg#Poppins') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v23-latin-700.eot');
    src: url('../fonts/poppins-v23-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v23-latin-700.woff2') format('woff2'), url('../fonts/poppins-v23-latin-700.woff') format('woff'), url('../fonts/poppins-v23-latin-700.ttf') format('truetype'), url('../fonts/poppins-v23-latin-700.svg#Poppins') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #475054;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 610px;
    margin: 16px auto;
    border: 2px solid #599487;
    background-color: #fff;
}

article {
    padding: 30px 60px 0;
}

footer {
    padding: 0 32px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 70px;
}

footer img {
    max-width: 156px;
}

p {
    margin: 0 0 16px;
}

:is(strong, h1) {
    font-weight: 700;
}

h1 {
    margin: 28px 0 28px 42px;
    font-size: 21px;
    line-height: 28px;
    color: #2398be;
}

h1:before {
    content: '\2022';
    float: left;
    font-size: 20px;
    text-indent: -28px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #2398be;
    text-decoration: underline;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media all and (max-width: 609px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 16px 16px 0;
    }

    footer {
        gap: 20px;
        padding: 0 16px 16px;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        margin: 16px 0 16px 20px;
    }

    h1:before {
        text-indent: -20px;
    }

    span {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}

@media all and (max-width: 500px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
}

@media all and (max-width: 370px) {
    #wrapper {
        font-size: 15px;
    }
}