@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 830px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: -0.5rem 0 1rem;
    font-size: 2em;
    line-height: 1.1em;
}
h1 span {
    font-size: 1rem;
    line-height: 1.3;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin: 0.5rem 0;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    display: flex;
    justify-content: space-between;
    background: #48307D;
    flex-wrap: wrap;
}
header :is(p, h1) {
    color: #fff;
}
header div:nth-of-type(2n+1) {
    width: calc(100% - 265px);
    padding: 1rem 1.5rem;
}
.logo p {
    font-size: 1.5em;
    line-height: 1.3;
    padding: 3rem 0 0;
}
.bg {
    background: #2D317A;
}
.bg p:first-of-type {
    padding-bottom: 2rem;
}
.bg p {
    font-size: 1.375em;
    line-height: 1.3;
}
.bg2 {
    background: #5E2E7D;
    padding: 1rem 1rem 0;
}
.bg2 p {
    font-size: 0.9375em;
    line-height: 1.3;
}
.bg1 {
    background: #2D317A;
}
header div:nth-of-type(2n) {
    width: 265px;
}
article {
    padding: 0.5rem 1.5rem 0;
}
article p {
    padding-bottom: 0.5rem;
}
footer p {
    padding: 1rem 3rem;
    background: #702A7A;
    color: #fff;
    font-size: 2em;
    line-height: 1.3;
}
@media only screen and (max-width: 829px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    header p, h1 {
        text-align: center;
    }
    header div {
        width: 100% !important;
    }
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header div:nth-of-type(2) {
        padding: 0 1rem 1rem;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    li {
        padding-left: 1rem;
    }
    article {
        padding: 0.5rem 1rem;
    }
    footer p {
        text-align: center;
        padding: 1rem;
        font-size: 1.5em;
    }
}