@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1.063em/1.3em "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 550px;
    border: solid 0px #000;
    padding: 1.5rem;
}
main {
    display: block;
    background: #70A1D4;
    border-radius: 20px;
}
p {
    padding-bottom: 0.4rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    position: relative;
    background: #70A1D4;
    color: #fff;
    font-weight: bold;
    font-size: 1.75em;
    padding: 10px 40px 16px 60px;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 2px 3px 0px #AFB4BE;
    margin: 0 0 0.5rem -85px;
    line-height: 1.2;
}
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 black;
    transform: rotate(0);
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
ul {
    list-style: none;
    padding: 0 0 0.5rem;
}
li {
    padding: 0 0 0.5rem 2rem;
}
ul li::before {
    content: "\2022";
    float: left;
    margin: 0 0 0 -1rem;
}
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: #A9C7E3;
}
article {
    padding: 0.7rem 2.5rem;
    background: #E0E6F2;
}
footer {
    padding: 1rem 1rem 1rem;
    color: #fff;
    position: relative;
}
.center{
    text-align: center;
}
.big {
    font-size: 1.6em;
    padding-top: 0.2rem;
}
figure {
    position: absolute;
    right: -1.5rem;
    top: -25px;
}
footer:before {
    content: '';
    position: absolute;
    top: 64%;
    right: -25px;
    width: 0;
    height: 0;
    border-right: 25px solid transparent;
    border-left: 0 solid transparent;
    border-top: 16px solid black;
}
: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:549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }
    p {
        text-align: left;
    }
    main, header {
        border-radius: 0;
    }
    article {
        padding: 1rem 1rem;
    }
    h1 {
        text-align: center;
        padding: 0.5rem 1rem;
        margin: 0 0 0.5rem -1rem;
        font-size: 1.5em;
        line-height: 1.25;
    }
    li {
        padding-left: 1rem;
    }
    br, h1::before, footer:before,.center br {
        display: none;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        justify-content: center;
    }
    footer {
        padding: 1rem;
    }
    footer figure {
        position: static;
        display: flex;
        justify-content: center;
        padding-top: 0.5rem;
    }
}