:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    border: 0.3125rem #F99C1D solid;
    max-width: 594px;
    position: relative;
    padding: 0.5rem 0.625rem 0.375rem;
    background-color: #FFFFFF;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 10px;
}

header p {
    width: 308px;
}

footer {
    border-top: 0.125rem solid #231f20;
    padding: 0.25rem 0 0.0625rem;
    text-align: center;
}

:is(h1 + p) {
    text-align: left;
}

p:not(footer p) {
    padding-bottom: 0.375rem;
}

p span {
    white-space: nowrap;
}

h1 {
    margin: 0 0 2px;
    font-size: 24px;
    line-height: 26px;
    position: relative;
    text-align: left;
    color: #F99C1D;
    font-weight: 700;
}

h1 small {
    font-size: 16px;
    font-weight: normal;
    margin: 0.15rem 0 0;
}

h1 span {
    font-weight: normal;
    display: block;
    font-size: 23px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

a.color {
    color: #F99C1D !important;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    vertical-align: middle
}

@media only screen and (max-width:609px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        font-size: 15px;
        padding: 16px;
    }

header p {
    width: auto;
}

    header {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    br {
        display: none;
    }

    p {
        padding-bottom: 0.5rem;
    }

    footer a {
        margin-left: 10px;
    }
}