@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: #3D3D3E;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 715px;
   border: solid 1px #000;
   background: #fff url('../images/bg.jpg') no-repeat bottom;
}

p {
   padding-bottom: 0.7rem;
}

h1 {
   margin: 0rem 0rem 4rem 3rem;
   font-size: 1.188em;
   line-height: 1.1em;
   font-weight: 400;
}

h1:before {
   content: "\2022";
   font-size: 1em;
   float: left;
   margin: 0 0 0 -16px;
}

h2 {
   font-size: 1.6em;
   line-height: 1.3;
   padding-bottom: 0.5rem;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

.rotate p {
   text-align: center;
   padding-bottom: 0;
   font-weight: 700;
   line-height: 1.1;
}

.rotate {
   background: #9FD8ED;
   padding: 0.5rem;
   transform: rotate(-4deg);
   border: 1px solid #3C3C3D;
   position: absolute;
   right: 8rem;
   bottom: 5rem;
}

article {
   padding: 0.4rem 1.5rem 0.7rem;
}

footer {
   position: absolute;
   right: 1rem;
   bottom: 0.6rem;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:714px) {
   #wrapper {
      border: none;
      margin: 0 auto;
      background: #fff;
   }

   p {
      text-align: left;
   }

   p :is(span, a) {
      display: inline-block;
   }

   h1 {
      margin-bottom: 1rem;
   }

   .hide_m {
      display: none;
   }

   footer {
      position: static;
      display: flex;
      justify-content: center;
      padding: 1rem;
   }

   .rotate {
      position: static;
      transform: none;
      margin: 0 0 1rem;
   }
}
