@charset "utf-8";

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 0.938em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 960px;
   border: solid 1px #000;
   background: #fff;
}

p {
   padding-bottom: 1rem;
}

h1 {
   margin: 0 0 0.2rem;
   font-size: 2.4em;
   line-height: 1.1em;
}

h2 {
   font-size: 1.313em;
   line-height: 1.3;
}

h3 {
   font-size: 1em;
   line-height: 1.3;
}

.big {
   font-size: 1.125em;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

ul {
   padding: 0 0 0.7rem;
   list-style: none;
}

li {
   padding: 0.4rem 0 0 25px;
}

ul li:before {
   content: "»";
   font-size: 1em;
   margin: 0 0 0 -25px;
   float: left;
}

article {
   padding: 1.5rem 1.5rem 0.5rem;
}

footer {
   position: absolute;
   right: 3rem;
   bottom: 1.5rem;
}

img {
   max-width: 100%;
   height: auto;

}

@media only screen and (max-width:959px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p :is(a, span) {
      display: inline-block;
   }

   h1 {
      font-size: 2em;
   }

   footer {
      position: static;
      padding: 0 1.5rem 1rem;
   }
}
