 @charset "utf-8";
 :root {
     font-size: 16px;
 }
 * {
     box-sizing: border-box;
     margin: 0;
 }
 html {
     min-height: 100%;
 }
 body {
     text-align: center;
     color: #000;
     font: 1.375em/1.3em 'Calibri', Arial, sans-serif;
 }
 #wrapper {
     position: relative;
     max-width: 550px;
     margin: 1rem auto;
     border: solid 2px #000;
     background-color: #fff;
     overflow: hidden;
     padding: 1rem;
 }
 p span {
     color: #E91B27;
 }
 h1 {
     margin: 0 0 0.5rem;
     font-size: 1.592em;
     line-height: 1.1;
     color: #86B958;
 }
 h2 {
     font-size: 1em;
     line-height: 1.3;
     text-align: left;
     margin-top: -1rem;
 }
 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     text-decoration: none;
 }
 img {
     max-width: 100%;
     height: auto;
 }
 header {
     padding: 0 1rem 0 3rem;
     display: flex;
     justify-content: center;
 }
 footer p {
     font-size: 0.8em;
     line-height: 1.3em;
 }
 figure:first-of-type {
     margin-top: 0.5rem;
 }
 figure {
     margin: 0;
 }
 @media only screen and (max-width:599px) {
     body {
         font-size: 1.1em;
         line-height: 1.3em;
     }
     #wrapper {
         border: none;
         margin: 0 auto;
         padding: 1rem;
     }
     .hide_m{
        display: none;
     }
     p a {
         display: inline-block;
     }
     h2{
        text-align: center;
        margin: 0 0 0.5rem;
     }
 }