@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v25-latin-regular.eot');
    src: url('../fonts/lato-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v25-latin-regular.woff2') format('woff2'), url('../fonts/lato-v25-latin-regular.woff') format('woff'), url('../fonts/lato-v25-latin-regular.ttf') format('truetype'), url('../fonts/lato-v25-latin-regular.svg#Lato') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v25-latin-700.eot');
    src: url('../fonts/lato-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v25-latin-700.woff2') format('woff2'), url('../fonts/lato-v25-latin-700.woff') format('woff'), url('../fonts/lato-v25-latin-700.ttf') format('truetype'), url('../fonts/lato-v25-latin-700.svg#Lato') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/lato-v25-latin-900.eot');
    src: url('../fonts/lato-v25-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v25-latin-900.woff2') format('woff2'), url('../fonts/lato-v25-latin-900.woff') format('woff'), url('../fonts/lato-v25-latin-900.ttf') format('truetype'), url('../fonts/lato-v25-latin-900.svg#Lato') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000000;
    font: 400 1em/1.5 'Lato', Arial, sans-serif;
}
h2, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 2px #767676;
    border-radius: 0.25rem;
    background: #fff;
    overflow: hidden;
    padding: 1.5rem;
}

p {
    padding-bottom: 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    margin: 0 0 2rem;
    font-size: 1.4375em;
    line-height: 1.3;
    font-weight: 900;
}

h2 {
    font-size: 1.35em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}

ul {
    padding: 0 0 2rem;
    list-style: none;
}

li {
    padding-left: 3rem;
}

li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
hr {
    border: 0;
    border-bottom: 1px solid #000;
    width: 50%;
    margin: 0 auto 4rem;
}
header {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}
.center, h1, footer p {
    text-align: center;
}
article p:first-of-type {
    font-size: 1.125em;
    line-height: 1.3;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        border-radius: 0;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    p:is(span, a) {
        display: inline-block;
    }

}

@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1rem;
    }
}