@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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.3125;
    font-weight: 400;
}

#wrapper {
    max-width: 480px;
    margin: 1rem auto;
    border: 2px solid #000;
    padding: 1rem;
    background-color: #fff;
    position: relative;
}

header {
    padding: 0 0 1rem;
    display: flex;
    justify-content: center;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

footer div {
    flex: 1 1 0;
}

footer p:last-of-type {
    margin: 0;
}

footer>a {
    display: inline-block;
    margin: 0 0 0.375rem;
}

p {
    margin: 0 0 1rem;
    text-align: justify;
    hyphens: auto;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0.75rem 0;
    font-weight: 700;
    font-size: 1.3125rem;
    line-height: 1.3;
    text-align: center;
}

.center {
    text-align: center;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

@media all and (max-width: 478px) {
    #wrapper {
        padding: 1rem;
        margin: 0;
        border: none;
    }

    p {
        text-align: left;
    }

    :is(a, span) {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}

@media all and (max-width: 424px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
}