@charset "utf-8";

/* Standard */
:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1em/1.3em Calibri, sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 500px;
   border: solid 1px #000;
   background: #fff;
   padding: 1rem 1rem 0;
}

p {
   padding-bottom: 0.5rem;
}

h1 {
   margin: 0rem -0.8rem 0.5rem;
   padding: 0.5rem;
   text-align: center;
   font-size: 1.652em;
   line-height: 1.1em;
   background: #CDCDCD;
}

h2 {
   font-size: 1em;
   line-height: 1.3;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

ul {
   padding: 0rem 0rem 0.5rem 0rem;
   list-style: none;
}

li {
   padding: 0 0 0 13px;
}

ul li:before {
   content: "\2010";
   font-size: 1em;
   float: left;
   margin: 0 0 0 -13px;
}

header {
   position: absolute;
   right: 1rem;
   top: 1rem;
}

article p:first-of-type {
   width: 275px;
}

footer p {
   font-size: 1.125em;
   line-height: 1.3;
   padding-top: 0.7rem;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:699px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   header {
      position: static;
      display: flex;
      justify-content: center;
      padding-bottom: 1rem;
   }

   article p:first-of-type {
      width: 100%;
   }

   p :is(span, a) {
      display: inline-block;
   }

   .hide_m,
   article br {
      display: none;
   }
}
