@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    background-color: #FDD4C5;
    overflow: hidden;
    padding: 0 0 1rem;
    box-shadow: -0.1rem 0.1rem 1rem #999;
    border-radius: 5px;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
footer :is(h2,p), h1{
    text-align: center;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2em;
    line-height: 1.1;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.flex{
    display: flex;
    justify-content: space-between;
}
.flex div{
    width: 48%;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #333;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 2rem;
}
ul li:before {
    content: "❖";
    float: left;
    margin: 0 0 0 -1.5rem;
}
article{
    padding: 2rem 1rem;
}
hr {
    border: none;
    background: #353535;
    height: 2px;
    width: 100%;
    text-align: center;
   margin: 0.5rem auto 1rem;
   } 
.logo{
    display: flex;
    justify-content: center;
    padding: 2rem 2rem 1rem;
    background: #FFF;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    h1{
        font-size: 1.5em;
    }
    article{
        padding: 1rem 1rem 0;
    }
    p{
        text-align: left;
    }
}
@media only screen and (max-width:780px) {
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100%;
        margin-bottom: 1rem;
    }
    h2{
        font-size: 1em;
    }
}