@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Calibri, sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 515px;
    border: solid 1px #000;
    background: #fff;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 0.7rem;
}
ul {
    padding: 0 0 0.7rem 0;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin: -1px 0 0 -16px;
}
h1 {
    margin: 0;
    font-size: 2.6em;
    line-height: 1.1em;
}
h1 small{
    font-size: 0.6em;
}
h2 {
    font-size: 1em;
    line-height: 1;
}
article p:first-of-type{
    font-size: 1.125em;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
@media only screen and (max-width:514px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p span{
        display: inline-block;
    }
   
}