@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #4E5471;
    font: 1em/1.3em 'Montserrat' , Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 788px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #F4C33E;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
}
h1 {
    margin: 0;
    font-size: 1.892em;
    line-height: 1.1;
    text-transform: uppercase;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
:is(a:link,a:visited,a:active){
    color: #4E5471;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1.4rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    position: relative;
    float: left;
    margin:0 0 0 -1.4rem;
}
header{
    padding:  0 0 0.5rem 0;
    display: flex;
    justify-content: center;
}
article section{
    margin: 0 -1rem 0.5rem;
    padding: 0.5rem 1rem 0;
    background: #F4C33E;
}
article section :is(p,h1){
    text-align: center;
    font-weight: bold;
    color: #000;
}
footer p{
    text-align: center;
}
@media only screen and (max-width:786px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    article br{
        display: none;
    }
    h1 {
        font-size: 1.5em;
        line-height: 1.5em;
    }
}