@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: .937rem/1.3 'Arial', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    white-space: nowrap
}

p {
    margin: 0 0 1rem;
}

h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
    color: #00B0F0;
}

h1+p {
    text-align: center;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.062rem;
    color: #00B0F0;
    padding-bottom: .625rem;
}

h3 {
    font-size: .937rem;
    font-weight: normal;
}

ul {
    margin: 0 0 1.5rem 3.437rem;
    list-style: none;
}

ul li:before {
    content: "\2022";
    float: left;
    font-size: 1.25rem;
    margin: 0 0 0 -1.562rem;
    line-height: 1;
}

header {
    padding: 3rem 3.5rem;
    display: flex;
}

article {
    padding: 0 3.5rem;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 3.5rem 2rem;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    a.wrap {
        white-space: normal;
    }

    header,
    footer {
        padding: 1rem;
    }

    article {
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 37.437rem) {
    ul {
        margin: 0 0 1rem 1.562rem;
    }

    header {
        justify-content: center;
    }

    a.wrap {
        white-space: normal;
    }
}