@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: #004457;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 17px;
    line-height: 23px;
    font-weight: 400;
}

#wrapper {
    max-width: 416px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
}

header {
    padding: 0 0 0 16px;
    border-top: 10px solid #056b85;
}

article {
    padding: 0 16px;
}

.images {
    position: relative;
}

.images img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
}

footer {
    padding: 0 16px 8px;
    border-bottom: 10px solid #056b85;
}

article p {
    margin: 0 0 12px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

h1 span {
    font-size: 18px;
}

h2 {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #004457;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media all and (max-width: 415px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    footer {
        padding: 16px 16px 10px;
    }

    .images {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .images img {
        position: static;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    .mobile {
        display: none;
    }
}