@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');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #231f20;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 560px;
    margin: 16px auto;
    border: 1px solid #cbcbcb;
    padding: 16px 20px 12px;
    background: #eeefef;
    position: relative;
}

header {
    position: absolute;
    top: 1px;
    right: 0;
    z-index: 999;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 45px 0 10px;
}

span {
    white-space: nowrap;
}

:is(strong, h1) {
    font-weight: 700;
}

h1 {
    margin: 0 0 9px 16px;
    font-size: 23px;
    line-height: 27px;
    flex: 1 1 0;
}

h1:before {
    content: '\25A0';
    float: left;
    margin-top: -3px;
    font-size: 16px;
    text-indent: -16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0e6eb6;
    text-decoration: underline;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media all and (max-width: 559px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    header {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0 0 16px;
    }

    .flex {
        padding: 16px 0;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    br {
        display: none;
    }
}