@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: .937rem;
    line-height: 1.4;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 56.875rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
    padding: 5rem 3rem 0.625rem;
}

p {
    margin: 0 0 1rem;
}

p strong {
    color: #6EB74A;
}

h1 {
    font-size: 1.875rem;
    line-height: 1.2;
    margin: 0 0 1.062rem 0;
    color: #6EB74A;
}

h1 small {
    font-weight: normal;
    font-size: 1.25rem
}

h2 {
    font-size: 1rem;
    margin: .75rem 0 .062rem;
    line-height: 1.4
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #6EB74A;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
    margin: 0 0 .937rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1.2;
}

ul:last-of-type {
    margin-bottom: 1.25rem;
}

header {
    position: relative;
}

header img {
    width: 9.375rem;
    position: absolute;
    bottom: -3.125rem;
    right: 0;
}

.main {
    display: flex;
    justify-content: space-between;
    column-gap: 2rem
}

.main>.section {
    width: auto;
    position: relative;
    margin-top: 1.875rem;
}

.main>article {
    width: 66%;
    margin-top: 4rem;
}

footer {
    display: flex;
    justify-content: end;
    border-bottom: 3.75rem solid #C6D30F;
    margin-top: -6rem;
}

footer>img {
    margin-bottom: -2.5rem;
}

@media only screen and (max-width: 56.812rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 50rem) {
    #wrapper {
        padding: 1rem;
    }

    header {
        display: flex;
        justify-content: center;
        padding: 1rem;
    }

    header img {
        position: static;
    }

    .main {
        flex-direction: column;
    }

    .main>article {
        width: 100%;
    }

    .main>.section {
        display: none;
    }

    .main>article {
        margin-top: 0;
    }

}

@media only screen and (max-width: 30rem) {

    h1,
    article p:last-of-type {
        text-align: center;
    }

    footer {
        justify-content: center;
        margin-top: 0;
    }
}