@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 0.938em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 1.5rem;
}
:is(h2, h3, h4, strong) {
    font-weight: 600;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
:is(h1, h3, h4, h4+p) {
    text-align: center;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 3em;
    line-height: 1;
    font-weight: 700;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
}
h4 {
    font-size: 1.3em;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
h4+p a {
    font-weight: 700;
    text-decoration: underline !important;
}
ul {
    padding: 0 0 0.5rem 1.25rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.25rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.7rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #FCB814;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    position: absolute;
    right: 1rem;
    top: 2rem;
}
footer p {
    text-align: center;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    h1 {
        font-size: 2.5em;
    }
    h4 br {
        display: none;
    }
    header {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
    h1 {
        font-size: 2em;
    }
}