@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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: 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 {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 460px;
    margin: 1rem auto;
    border: 2px solid #3564a3;
    overflow: hidden;
    padding: 1rem;
    background-color: #fff;
}

footer {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin: 0 11%;
}

footer p {
    margin: 0;
    width: calc(100% - 80px);
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 17px;
    line-height: 1.1;
    padding: 0 0 0 20px;
}

h1 span {
    font-weight: normal;
    font-size: 14px;
}

h1:before {
    content: "\25A0";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 17px;
    text-indent: -1.25rem;
    margin: -2px 0 0;
    color: #3564a3;
}

h2 {
    font-size: 20px;
    margin: 1rem -1rem;
    background: #3564a3;
    padding: 10px 1rem;
    color: #FFF;
    line-height: 22px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media all and (max-width:459px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, h1) {
        hyphens: auto;
        text-wrap: pretty;
    }

    footer {
        margin: 0;
    }

    br {
        display: none;
    }
}