@charset "utf-8";

/* Standard */
:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1.125em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
   color: #343334;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 550px;
   border: solid 1px #000;
   background: #fff;
}

p {
   padding-bottom: 1rem;
}

p span {
   color: #FFCB2A;
}

h1 {
   margin: 0rem 0rem 0rem 1rem;
   font-size: 1.592em;
   line-height: 1.1em;
}

h1:before {
   content: "+";
   font-size: 0.7em;
   float: left;
   margin: 0 0 0 -16px;
}

h1 small {
   font-size: 0.7em;
}

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 1rem 0rem;
   list-style: none;
}

li {
   padding: 0 0 0 16px;
}

ul li:before {
   content: "\2022";
   font-size: 1em;
   float: left;
   margin: 0 0 0 -16px;
}

header {

   background: #FFCB2A;
}

.title {
   padding: 0 3rem 1rem;
}

article p {
   color: #fff;
   padding: 1rem 3rem;
   background: #342D1F;
}



footer p {
   background: #fff;
   padding: 0.5rem;
   transform: rotate(-90deg);
   position: absolute;
   right: -79px;
   bottom: 79px;
   font-weight: 700;
}

footer p span {
   color: #FFCB2A;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:549px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   p :is(span, a) {
      display: inline-block;
   }

   .hide_m {
      display: none;
   }

   footer p {
      position: static;
      transform: none;
      padding: 1rem;
   }

   article p,
   .title,
   footer p {
      padding: 1rem;
   }
}
