@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #221e1f;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #221e1f;
    background: #aad1ed;
    position: relative;
}

article {
    position: absolute;
    top: 120px;
    right: 30px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

footer {
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: -13px 0 0;
}

h1 {
    margin: 34px 16px 16px 25px;
    font-weight: 400;
    font-size: 20px;
    position: relative;
    line-height: 1.3;
    width: 223px;
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}

h1:before {
    content: '\2022';
    position: absolute;
    margin-top: -3px;
    font-size: 24px;
    text-indent: -32px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #221e1f;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 798px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        right: 16px;
        top: 20%;
    }

    footer {
        padding: 0 16px;
        gap: 16px;
    }
}

@media all and (max-width: 750px) {
    article {
        position: static;
        align-items: center;
        padding: 16px 16px 0;
    }

    footer {
        padding: 16px;
        margin: 0;
        flex-direction: column;
    }

    h1 {
        margin: 20px 0 16px 20px;
    }

    h1:before {
        text-indent: -20px;
    }

    :is(footer p, h1) {
        text-align: center;
    }

    br {
        display: none;
    }
}

@media all and (max-width: 480px) {
    a {
        white-space: normal !important;
        word-break: break-all;
    }
}