@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/open-sans-v44-latin-300.eot');
    src: url('../fonts/open-sans-v44-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-300.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-300.woff') format('woff'), url('../fonts/open-sans-v44-latin-300.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-300.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v44-latin-600.eot');
    src: url('../fonts/open-sans-v44-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-600.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-600.woff') format('woff'), url('../fonts/open-sans-v44-latin-600.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-600.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Dosis';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/dosis-v32-latin-700.eot');
    src: url('../fonts/dosis-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/dosis-v32-latin-700.woff2') format('woff2'), url('../fonts/dosis-v32-latin-700.woff') format('woff'), url('../fonts/dosis-v32-latin-700.ttf') format('truetype'), url('../fonts/dosis-v32-latin-700.svg#Dosis') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.4em 'Open Sans', Arial, sans-serif;
}
h2, strong {
    font-weight: 600;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    background-color: #fff;
    box-shadow: 0 1px 5px 1px rgba(0,0,0,.25);
}
p {
    margin: 1rem 0;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 2em;
    line-height: 1.1;
    font-family: 'Dosis', Arial, sans-serif;
    color: #3F2A56;
    text-align: center;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin: 1.25rem 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #181420;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0;
    margin: 1rem 0;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "\2022";
    float: left;
    margin: 0 0 0 -1rem;
}
.logo {
    padding: 1rem;
}
header img {
    display: block;
}
main {
    padding: 1rem 3.375rem;
}
.highlight {
    background-color: #4f5d60;
    border-radius: 2px;
    color: #fff;
    padding: 3px 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.3;
}
.color, a.color {
    color: #225C2B;
}
h1 + p {
    display: flex;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1.5rem;
}
.link {
    text-align: center;
    margin: 0;
}
.link a {
    display: block;
    width: fit-content;
    margin: 1rem auto;
    text-transform: uppercase;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    background-color: #F4E500;
    border: 3px solid #F4E500;
    padding: 0.5em 4em;
    color: #000 !important;
    border-radius: 0.25rem;
}
.center {
    text-align: center;
}
hr {
    border: 0;
    border-bottom: 1px solid #dde1e2;
    margin: 2rem -3.75rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        margin: 0 auto;
        overflow: hidden;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
}
@media only screen and (max-width: 780px) {
    main {
        padding: 1.5rem 2rem;
    }
}
@media only screen and (max-width: 480px) {
    .logo {
        padding: 1rem;
    }
    main {
        padding: 1rem;
    }
}