@font-face {
    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-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;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #231f20;
}

#wrapper {
    margin: 1rem auto;
    max-width: 480px;
    background: #fff;
    border: 3px solid #50a955;
}

article {
    padding: 16px 16px 6px;
}

.text {
    position: relative;
    bottom: 10px;
    font-size: 108%;
}

.margin-left {
    margin-left: 88px;
}

.big {
    font-size: 1.1em;
    line-height: 1.4;
    margin-top: -14px;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 20px;
    margin: 7px 0 7px 79px;
    line-height: 1.2;
}

h1 small {
    font-size: 80%;
    display: block;
    font-weight: 400;
}

h1:before {
    font-size: 52px;
    position: relative;
    top: -17px;
    float: left;
    content: "\2022";
    color: #50a955;
    text-indent: -18px;
    left: -11px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #588899;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

footer {
    padding: 0 20px 16px;
}

.footer-flex {
    display: flex;
    gap: 28px;
    align-items: center;
}

@media screen and (max-width: 480px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        margin-left: 26px;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br {
        display: none;
    }

    .margin-left {
        margin: 0 !important;
    }

    .inline {
        display: inline !important;
    }
}

@media screen and (max-width: 450px) {
    .footer-flex {
        flex-direction: column;
        align-items: center;
    }
}