@charset "utf-8";

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 53.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

p {
    text-align: center;
    margin: 0 0 1.25rem;
}

p a {
    color: inherit;
    text-decoration: none;
}

.text_nobr {
    white-space: nowrap;
}

.link {
    color: inherit;
    text-decoration: none;
}

.text_italic {
    font-style: italic;
}

ul {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 0 0 0 1.25rem;
    margin: 0 0 0.3125rem;
}

ul li span {
    display: block;
    text-decoration: underline;
    margin: 0.3125rem 0;
}

ul li:before {
    content: "\2022";
    position: relative;
    display: block;
    float: left;
    top: 0;
    margin: 0 0 0 -1.25rem;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
}

h1 span {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 0.7em;
}

h1::after {
    content: "";
    background-color: #FFEF21;
    width: 68%;
    height: 0.1875rem;
    display: block;
    margin: 0.625rem auto;
}

h1 + p {
    font-size: 1.48em;
}

h2 {
    font-size: 1.375rem;
    font-weight: 900;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

h3 {
    text-align: center;
    font-size: 1rem;
    font-style: italic;
}

article {
    padding: 0.625rem 1.875rem;
}

article > p:not(:last-of-type) {
    font-size: 1.05em;
}

article > section {
    display: flex;
    justify-content: space-between;
}

article > section > section {
    width: 46%;
}

footer {
    background-color: #E8E5E4;
    padding: 0.625rem 1.875rem 1.875rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
}

footer > section:nth-of-type(2) {
    width: 60%;
}

footer p {
    margin: 0 0 0.625rem;
}

footer > section:nth-of-type(2) > p:last-of-type {
    margin: 0 auto;
    border-top: 0.1875rem solid #FFEF21;
    width: 80%;
    padding: 0.625rem 0 0;
}

@media only screen and (max-width: 53.6875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article {
        padding: 0.625rem 1rem;
    }

    article > section {
        display: block;
    }

    article > section > section {
        width: auto;
    }

    footer {
        padding: 0.625rem 1rem 1rem;
        display: block;
        text-align: center;
    }

    footer > section:nth-of-type(2) {
        width: auto;
        margin: 1rem 0;
    }

    footer > section:nth-of-type(2) > p:last-of-type {
        width: auto;
    }
}

@media only screen and (max-width: 23.438rem) {

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}