@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.4em "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 800px;
    border: solid 0px #000;
    padding: 1.5rem;
}
main {
    display: block;
    background: #6181AA;
    border-radius: 20px;
}
p {
    padding-bottom: 0.75rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    position: relative;
    background: #6181AA;
    color: #fff;
    font-size: 1.85em;
    line-height: 1.2;
    padding: 10px 16px 16px 41px;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 2px 3px 0px #888787;
    margin: 0 5rem 0.75rem -85px;
}
h1::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 19px;
    width: 1px;
    height: 39px;
    border-left: 25px solid transparent;
    border-right: 0 solid transparent;
    border-top: 13px solid #1A1102;
    transform: rotate(0);
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
ul {
    padding: 0 0 0.75rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
.list li:before {
    content: "\2010";
}
header {
    border-radius: 20px 20px 0 0;
    padding: 1.3rem 0.5rem 0.5rem;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    background: #9FB7DD;
}
article {
    padding: 0.7rem 2.5rem;
    background: #D7DBE6;
}
footer {
    padding: 0.5rem 1.25rem;
    color: #fff;
    position: relative;
}
footer p {
    color: #fff;
}
.center {
    text-align: center;
}
.big {
    font-size: 1.6em;
    padding-top: 0.2rem;
}
figure {
    position: absolute;
    right: -1.5rem;
    top: -25px;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }
    p, li {
        text-align: left;
        hyphens: auto;
    }
    p a, span{
        display: inline-block;
    }
    main, header {
        border-radius: 0;
    }
    h1 {
        padding-left: 5rem;
        margin-right: 0;
    }
    header {
        justify-content: center;
    }
    article {
        padding-inline: 2rem;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding: 1rem;
    }
    h1 {
        padding-left: 5.5rem;
        font-size: 1.5em;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
}