@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-size: 16px;
    line-height: 23px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    padding: 8px 8px 3px;
    position: relative;
    max-width: 488px;
    margin: 1rem auto;
    border: 2px solid #000;
    overflow: hidden;
    background-color: #FFF49E;
}

strong {
    font-weight: 700;
}

h1 {
    text-align: center;
    color: #0C7EBB;
    margin: 14px 0 14px;
    font-size: 16px;
    line-height: 1.24;
    font-weight: 400;
}

h1 strong {
    font-size: 22px;
    display: block;
}

p {
    text-align: center;
    margin-bottom: 16px;
}

p span {
    font-size: 15px;
    position: relative;
    z-index: 9;
}

header p {
    line-height: 1.3;
}

footer {
    position: absolute;
    justify-content: space-between;
    display: flex;
    bottom: 6px;
    width: 100%;
    left: 0;
    padding: 0 10px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media (max-width: 486px) {
    #wrapper {
        margin: 0;
        padding: 1rem;
        border: none;
    }

    header p {
        line-height: 1.5;
    }

    footer {
        position: static;
        justify-content: center;
        gap: 1rem;
    }

    br {
        display: none;
    }
}