@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #182260;
    font: 1em/1.5em Verdana, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 910px;
    margin: 1rem auto;
    border: 1px solid #000;
    padding: 2.5rem;
    background: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 2.5rem 0 0.75rem;
    font-size: 1.5em;
    line-height: 1.3;
    font-weight: normal;
}
h2, h3 {
    font-size: 1em;
    line-height: 1.5;
}
h3 {
    margin-bottom: 1rem;
}
figure {
    margin: 1.5625rem -2.5rem;
}
footer {
    display: flex;
    justify-content: end;
}
footer a {
    display: inline-block;
    padding: 0.625rem 1rem;
    color: #fff !important;
    background: #1d1d5e;
    border-radius: 5px;
}
:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: #00FFFF !important;
    text-decoration: underline !important;
}
ul {
    padding: 0 0 1rem 1.25rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
}
li ul {
    padding: 0;
}
li li:before {
    content: "\25CB";
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
@media only screen and (max-width:909px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li){
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    #wrapper {
        padding: 2rem;
    }
    header {
        display: flex;
        justify-content: center;
    }
    figure {
        margin: 1rem -2rem 2rem;
    }
    h1 {
        margin-top: 1.5rem;
    }
    :is(h1, .info) {
        text-align: center;
    }
    footer {
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    figure {
        margin: 0 -1rem 1rem;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
}