@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 5rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.2em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 4rem;
}
li:before {
    content: "•";
    position: relative;
    float: left;
    margin-left: -1rem;
}
header {
    display: flex;
    justify-content: start;
    gap: 0 2rem;
}
p a.ins {
    text-decoration: underline;
    color: #0462C1;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 2rem;
    }
    p {
        text-align: left;
    }
    p :is(a,span){
        display: inline-block;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
    header :is(p, h1) {
        text-align: center;
    }
    br {
        display: none;
    }
    ul li {
        padding-left: 2rem;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    ul li {
        padding-left: 1rem;
    }
}