@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.eot');
    src: url('../fonts/inter-v20-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v20-latin-regular.woff2') format('woff2'), url('../fonts/inter-v20-latin-regular.woff') format('woff'), url('../fonts/inter-v20-latin-regular.ttf') format('truetype'), url('../fonts/inter-v20-latin-regular.svg#Inter') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v20-latin-500.eot');
    src: url('../fonts/inter-v20-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v20-latin-500.woff2') format('woff2'), url('../fonts/inter-v20-latin-500.woff') format('woff'), url('../fonts/inter-v20-latin-500.ttf') format('truetype'), url('../fonts/inter-v20-latin-500.svg#Inter') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin-700.eot');
    src: url('../fonts/inter-v20-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v20-latin-700.woff2') format('woff2'), url('../fonts/inter-v20-latin-700.woff') format('woff'), url('../fonts/inter-v20-latin-700.ttf') format('truetype'), url('../fonts/inter-v20-latin-700.svg#Inter') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #111;
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    background-color: #f9f9f9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 62.5rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    padding: 1.875rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    text-decoration: underline;
    white-space: normal;
}

p {
    padding-bottom: 1.125rem;
}

.margin {
    margin-bottom: 2.25rem;
}

h1,
h2 {
    font-size: 1.375rem;
    line-height: 1.2;
    color: #c00000;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 1.125rem;
}

h2 {
    color: #000;
}

h3 {
    font-size: 1rem;
    margin: 1rem 0;
}

ul {
    padding: 0 0 1.25rem 3rem;
}

ul ul {
    padding-bottom: 0;
}

.button {
    display: flex;
    margin: 0 0 1.125rem;
}

.button a {
    padding: 6px 12px;
    color: #fff;
    background-color: #337ab7;
    border: 1px solid #2e6da4;
}

.button a:hover {
    background-color: #286090;
    border-color: #204d74;
}

header {
    display: flex;
    justify-content: end;
    padding-bottom: 1.875rem;
}

article {
    padding: 1.25rem 1.25rem 0;
    background-color: #e3dfda;
}

footer {
    padding: 0 1.25rem 1.25rem;
    background-color: #e3dfda;
    display: flex;
    justify-content: end;
}

@media only screen and (max-width: 62.438rem) {

    #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: 48rem) {
    #wrapper {
        padding: 1rem;
    }

    body {
        font-size: 1rem;
    }

    header,
    .button,
    footer {
        justify-content: center;
    }

    header {
        padding: .875rem 0 1.875rem;
    }

    .margin {
        margin-bottom: .5rem;
    }

    h1 {
        text-align: center;
    }
}

@media only screen and (max-width: 40rem) {
    ul {
        padding-left: 1rem;
    }

    h2,
    h3 {
        margin-top: 0;
    }

    h2 {
        font-size: 1.2rem;
    }

    article {
        padding: 1.25rem 1rem 0;
        background-color: #e3dfda;
    }

    footer {
        padding: 0 1rem 1.25rem;
    }
}