@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-serif-4-v13-latin-regular.eot');
    src: url('../fonts/source-serif-4-v13-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-serif-4-v13-latin-regular.woff2') format('woff2'), url('../fonts/source-serif-4-v13-latin-regular.woff') format('woff'), url('../fonts/source-serif-4-v13-latin-regular.ttf') format('truetype'), url('../fonts/source-serif-4-v13-latin-regular.svg#SourceSerif4') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/source-serif-4-v13-latin-600.eot');
    src: url('../fonts/source-serif-4-v13-latin-600.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-serif-4-v13-latin-600.woff2') format('woff2'),
        url('../fonts/source-serif-4-v13-latin-600.woff') format('woff'),
        url('../fonts/source-serif-4-v13-latin-600.ttf') format('truetype'),
        url('../fonts/source-serif-4-v13-latin-600.svg#SourceSerif4') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-serif-4-v13-latin-700.eot');
    src: url('../fonts/source-serif-4-v13-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-serif-4-v13-latin-700.woff2') format('woff2'), url('../fonts/source-serif-4-v13-latin-700.woff') format('woff'), url('../fonts/source-serif-4-v13-latin-700.ttf') format('truetype'), url('../fonts/source-serif-4-v13-latin-700.svg#SourceSerif4') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Source Serif 4', Times New Roman, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#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;
}

p {
    margin: 0 0 25px;
}

span {
    white-space: nowrap;
}

h1 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 100px;
}

h2 {
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 5px;
}

ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 23px;
    line-height: 1.2;
}

header {
    display: flex;
    justify-content: flex-end;
    padding: 50px 80px;
}

article {
    padding: 0 60px 0 80px;
}

footer {
    padding: 0 60px 50px 80px;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    
    header {
        padding: 16px;
    }
    
    article, footer {
        padding: 0 16px
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        text-align: center;
        font-size: 27px;
        margin: 0 0 50px;
    }
    
    footer p:last-of-type {
        text-align: center;
    }
}