@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: #00003e;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 645px;
    margin: 16px auto;
    border: 2px solid #000;
    padding: 30px 16px 10px 325px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.logo {
    position: absolute;
    bottom: 26px;
    left: 25px;
}

p {
    margin: 0 0 20px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.45;
    position: absolute;
    top: 28px;
    left: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #00003e;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media all and (max-width: 644px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    header {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    :is(h1, .logo) {
        position: static;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        text-align: center;
        font-size: 24px;
    }

    br {
        display: none;
    }

    a {
        white-space: nowrap;
    }
}

@media all and (max-width: 374px) {
    article a {
        white-space: normal !important;
    }
}