@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000000;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal;
    font-family: Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}

p {
    padding-bottom: 0.7rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: #002E6E;
    font-size: 3rem;
    line-height: 1.2;
}

h1 span {
    color: #939598;
    font-size: .95em;
}

h1+h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1rem;
    color: #71BF44;
}

ul {
    padding: 0 0 1rem 1rem;
}

.flex {
    display: flex;
    gap: 2rem;
}

.flex div {
    flex: 50%;
}

article {
    padding: 2rem 2rem 1rem;
}

footer {
    padding: 1.25rem 2rem 0.25rem;
    background: #DCDDDF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: .625rem solid #71BF44;
}

.button a {
    padding: 20px;
    background-color: #002E6E;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1rem;
}

.button a:hover {
    background-color: #004099;
}

@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;
    }

    h1,
    h1+h2 {
        font-size: 2.1rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer>div:first-of-type {
        width: 100%;
    }

    .button br {
        display: none;
    }

    .flex {
        display: block;
    }

    .flex>div:first-of-type ul {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 40rem) {

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 1rem 1rem 0.25rem;
    }
}