@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v50-latin-regular.eot');
    src: url('../fonts/roboto-v50-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v50-latin-regular.woff') format('woff'), url('../fonts/roboto-v50-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v50-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v50-latin-700.eot');
    src: url('../fonts/roboto-v50-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v50-latin-700.woff2') format('woff2'), url('../fonts/roboto-v50-latin-700.woff') format('woff'), url('../fonts/roboto-v50-latin-700.ttf') format('truetype'), url('../fonts/roboto-v50-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #002C36;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

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:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
    padding-bottom: 1.5rem;
}

h2 {
    font-size: 1.2rem;
    color: #4F8C98;
    padding-bottom: .5rem;
}

ul {
    padding: 0 0 1.5rem 3rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

article {
    padding: 1.5rem 2rem 0;
}

footer {
    padding: 0 2rem 2rem;
}

@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: 42rem) {
    header {
        padding: 1rem;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}

@media only screen and (max-width: 35rem) {
    h1 {
        font-size: 1.7rem;
        padding-bottom: 1rem;
    }

    ul {
        padding: 0 0 1rem 1rem;
    }
}