@charset "utf-8";

:root {
    font-size: 16px;
}

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

html {
    min-height: 100%;
}

body {
    color: #151616;
    font: 1.125em/1.3em 'Arial Narrow', Arial, Helvetica, sans-serif;
}

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

p {
    padding-bottom: 0.625rem;
    text-align: justify;
}

.color {
    color: #32b3dc;
}

iframe{
    width: 100%;
    border: none;
    height: 300px;
    margin-bottom: 5px;
}

h1 {
    margin: 0 0 0.5rem;
    font-size: 1.8em;
    line-height: 1.3;
    padding: 0.5rem 1rem;
    background: #151616;
    color: #32b3dc;
    text-align: center;
}

h1 span {
    display: block;
    color: #fff;
    font-size: 0.8em;
    font-weight: normal;
}

h2 {
    font-size: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0 0 0.625rem 1.25rem;
}

h2:before {
    content: "■";
    font-size: 1.5em;
    line-height: 0.7;
    float: left;
    margin: 0 0 0 -1.25rem;
    color: #32b3dc;
}

h2 span {
    font-size: 110%;
}

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

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

hr {
    border: 0;
    border-bottom: 1px solid #32b3dc;
    margin-bottom: 0.625rem;
}

ul {
    margin: 0 0 10px 15px;
    padding: 0;
}

ul li {
    list-style: none;
    text-indent: -15px;
}

ul li:before {
    font-size: 20px;
    margin-right: 15px;
    position: relative;
    top: 1px;
    float: left;
    content: "\2022";
}

header img {
    display: block;
}

article {
    padding: 2rem 3.125rem 0;
}

:is(article section, footer) p {
    text-align: center;
}

footer figure {
    margin: 0 0 1rem;
    display: flex;
    justify-content: center;
}

footer p {
    font-size: 1.2em;
    line-height: 1.3;
    letter-spacing: 1px;
}

@media only screen and (max-width:749px) {
    body {
        font-size: 1em;
    }

    #wrapper {
        border: none;
        margin: 0 auto;
    }

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

    p {
        text-align: left;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
    }
}

@media only screen and (max-width:480px) {
    #wrapper {
        padding: 0;
    }

    h1 {
        font-size: 1.5em;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}