@charset "utf-8";

/* Standard */
:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 500px;
   border: solid 1px #000;
   background: #fff;
}

h1 {
   margin: 0rem 0rem 0rem;
   font-size: 1.313em;
   line-height: 1.1em;
   position: absolute;
   left: 1.5rem;
   top: 15rem;
}

h2 {
   font-size: 1.063em;
   line-height: 1.3;
   padding-bottom: 0.5rem;
   position: relative;
}

h2:before {
   color: #ED1E23;
   content: '•';
   font-size: 5rem;
   line-height: 1.3;
   position: absolute;
   left: 0;
   top: -41px;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

hr {
   border: none;
   border-bottom: 2px solid #ED1E23;
   margin: 0.7rem 2rem;
}

article {
   padding: 0.5rem 2rem 1rem 0.7rem;
}

article h2,
article p {
   padding-left: 2rem;
}

footer p {
   text-align: center;
   background: #2C3135;
   padding: 0.7rem;
   color: #fff;
   font-size: 1.125em;
   line-height: 1.3;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:499px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   h1 {
      position: static;
      margin: 0 1rem 1.5rem;
   }

   .hide_m {
      display: none;
   }

   p :is(span, a) {
      display: inline-block;
   }
}
