@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v47-latin-300.eot');
    src: url('../fonts/roboto-v47-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v47-latin-300.woff2') format('woff2'), url('../fonts/roboto-v47-latin-300.woff') format('woff'), url('../fonts/roboto-v47-latin-300.ttf') format('truetype'), url('../fonts/roboto-v47-latin-300.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v47-latin-700.eot');
    src: url('../fonts/roboto-v47-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v47-latin-700.woff2') format('woff2'), url('../fonts/roboto-v47-latin-700.woff') format('woff'), url('../fonts/roboto-v47-latin-700.ttf') format('truetype'), url('../fonts/roboto-v47-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #3c3c41;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

a.link {
    text-decoration: underline;
}

a.link:hover {
    text-decoration: none;
}

p {
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.6rem;
    line-height: 1.1;
    font-weight: 300;
    color: #00508c;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
}

header {
    display: flex;
    padding: 1rem 2rem;
}

article {
    padding: 2rem 2rem 0;
}

footer {
    padding: 0 2rem .5rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 46rem) {
    h1 {
        font-size: 2rem;
    }

    header {
        justify-content: center;
        padding: 1rem;
    }

    article {
        padding: 1.5rem 1rem 0;
    }

    footer {
        padding: 0 1rem;
        display: block;
        text-align: center;
    }

    ul,
    p,
    h2 {
        margin-bottom: 1rem;
    }
}