@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #695040;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 456px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #695040;
    background-color: #FAAE18;
    overflow: hidden;
    padding: 0rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0.5rem;
    font-size: 2em;
    font-weight: 500;
    line-height: 0.9em;
}

h1 span {
    font-size: 0.75em;
}

h1+p {
    font-weight: 500;
    padding-bottom: 1.25rem;
}

h2 {
    font-size: 1.22em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}

a {
    color: #695040;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 2rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 0.8rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.000em;
    position: relative;
    float: left;
    top: 0px;
    margin-left: -0.8rem;
    font-family: Helvetica, sans-serif;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 1rem;
    position: relative;
}

header img {
    display: block;
}

header a {
    position: absolute;
    width: 30%;
    height: 46%;
    top: 6%;
    left: 7%;
}

article {
    padding: 0rem 1rem 3rem;
}

footer {
    padding: 0rem 1rem 1.5rem;
}

footer strong {
    font-weight: 500;
}

@media only screen and (max-width:455px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0;
        font-size: 0.875em;
        line-height: 1.3em;
    }
    p {
        text-align: left;
    }
}