 @charset "utf-8";
 :root {
     font-size: 16px;
 }
 * {
     box-sizing: border-box;
     margin: 0;
 }
 html {
     min-height: 100%;
 }
 body {
     color: #000;
     font: 1em/1.3em "Segoe UI", Arial, sans-serif;
 }
 #wrapper {
     position: relative;
     max-width: 800px;
     margin: 1rem auto;
     border: solid 1px #000;
     background-color: #fff;
     overflow: hidden;
 }
 p {
     padding-bottom: 1rem;
 }
 p a.ins {
     text-decoration: underline;
 }
 h1 {
     margin: 0 0 1rem;
     font-size: 2em;
     line-height: 1.1;
 }
 h2 {
     font-size: 1em;
     line-height: 1.3;
 }
 h3 {
     font-size: 1.5em;
     line-height: 1.3;
     margin-bottom: 1rem;
     font-weight: 600;
 }
 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     text-decoration: none;
 }
 img {
     max-width: 100%;
     height: auto;
     vertical-align: middle;
 }
 ul {
     padding: 0 0 1rem;
     list-style: none;
 }
 ul li {
     padding-left: 1.5rem;
 }
 ul li:before {
     content: "•";
     float: left;
     margin: 0 0 0 -1rem;
 }
 ul ul {
     padding: 0;
 }
 ul ul li {
     padding-left: 0.7rem;
 }
 ul ul li:before {
     content: "-";
     margin-left: -0.7rem;
 }
 article div :is(h1, h3, p) {
     text-align: center;
 }
 article {
     padding: 1rem 1rem 0;
 }
 footer {
     padding: 0 1rem 0.5rem;
 }
 footer img {
     vertical-align: -29px;
 }
 @media only screen and (max-width:799px) {
     #wrapper {
         border: none;
         margin: 0 auto;
     }
     br:not(.contact br) {
         display: none;
     }
     h1 {
         font-size: 1.7em;
     }
 }