@charset "utf-8";
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/poppins-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v23-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v23-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/poppins-v23-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/poppins-v23-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v23-latin-600.eot'); /* IE9 Compat Modes */
  src: url('../fonts/poppins-v23-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v23-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v23-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/poppins-v23-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/poppins-v23-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/raleway-v36-latin-500.eot'); /* IE9 Compat Modes */
  src: url('../fonts/raleway-v36-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v36-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/raleway-v36-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/raleway-v36-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/raleway-v36-latin-500.svg#Raleway') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/raleway-v36-latin-600.eot'); /* IE9 Compat Modes */
  src: url('../fonts/raleway-v36-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v36-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/raleway-v36-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/raleway-v36-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/raleway-v36-latin-600.svg#Raleway') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.2em 'Poppins', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('../images/bg.jpg') no-repeat;
    background-size: 100% auto;
    overflow: hidden;
}
:is(p, li, h1, h2) {
    transform: skew(-1deg);
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1, footer p {
    font-family: 'Raleway', Arial, sans-serif;
}
h1 {
    margin: 0 0 1.2rem;
    font-size: 2.2em;
    line-height: 1.1;
    font-weight: 600;
    text-align: center;
}
h2 {
    font-size: 1.35em;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul ul {
    padding-bottom: 0;
}
li {
    padding-left: 0.9rem;
    position: relative;
}
li:before {
    content: "▶";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: -1px;
    font-family: Arial, sans-serif;
}
ul ul{
    margin-left: -0.9rem;
}
ul ul li:before {
    content: "\2092";
    font-size: 0.875rem;
    top: -4px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.box {
    width: 33%;
}
header {
    padding: 1rem 4rem 0.5rem;
}
header figure {
    position: absolute;
    right: 2.25rem;
    top: 0;
}
.top {
    position: relative;
}
.top a {
    position: absolute;
    top: 0;
    left: 1%;
    width: 13%;
    height: 97%;
}
article, footer {
    background: rgba(255, 255, 255, 0.8);
}
article {
    padding: 0.5rem 0.5rem 0;
    margin: 0 0.25rem 0.25rem;
}
footer p {
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    font-size: 1.1em;
    line-height: 1.3;
    text-align: center;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    br {
        display: none;
    }
    :is(p, li, h1, h2) {
        transform: none;
    }
    header {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
    header figure {
        position: static;
    }
}
@media only screen and (max-width:768px) {
    .flex {
        flex-direction: column;
    }
    .box {
        width: 100%;
    }
}