@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #00569d;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #0070c0;
}

a:hover {
    text-decoration: underline;
}

article p {
    padding-bottom: .5rem;
}

h1 {
    font-size: 1.8rem;
    line-height: 1;
    text-align: center;
    color: #0070c0;
    padding-bottom: 1rem;
}

h1 span {
    font-size: 1.1rem;
    font-weight: normal;

}

h2 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

h3 {
    font-size: 1.1rem;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 0 3rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -3rem;
}

.center {
    text-align: center;
}

header {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 2rem 4rem 0 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.3;
}

article {
    padding: 2rem 1rem 0;
    margin: -10rem 4rem 0;
    background: url("../images/bg.png") 0 0 /100% 100% no-repeat;
}

article>p:first-of-type {
    font-style: italic;
    text-align: justify;
    padding: 0 2rem 2rem 16rem;
}

footer {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

@media only screen and (max-width:54.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 4rem;
    }

    article {
        margin-top: 0;
    }

    article>p:first-of-type {
        text-align: left;
        padding: 0 2rem 2rem;
    }
}

@media only screen and (max-width: 48rem) {
    header {
        padding: 1.5rem 1rem;
    }

    article {
        padding: 2rem 1rem 0;
        margin: 0 1rem;
    }
}

@media only screen and (max-width: 40rem) {
    article {
        padding: 1rem 1rem 0;
        background: #c5d3ec;
    }

    article>p:first-of-type {
        padding: 0 0 1rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    ul li {
        padding: 0 0 0 1rem;
    }

    ul li:before {
        margin-left: -1rem;
    }
}

@media only screen and (max-width: 27rem) {

    header,
    h1 span {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}