@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #D1D2D4;
    overflow: hidden;
    padding: 0 1rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2em;
    line-height: 1.1;
}
h1 small{
    font-size: 0.6em;
}
h1 span{
    display: block;
    font-size: 0.85em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "▪";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header{
    background: #FFF;
    margin: 0 -1rem 1rem;
    padding: 1rem 1rem 0;
}
header figure{
    margin: 0 -1rem;
}
header figure img{
    display: block;
}
.flex{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.flex p{
    width: 288px;
    font-size: 0.85em;
    line-height: 1.2em;
}
h1,footer p{
    text-align: center;
}
p span.db{
    display: block;
    margin-top: 0.3rem;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .flex{
        flex-direction: column;
        align-items: center;
    }
    .flex p{
        width: 100%;
        text-align: center;
    }
    p :is(a,span){
        display: inline-block;
    }
}