@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 0.938rem;
    line-height: 1.5;
}

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;
    padding: 2rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p,
ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

article p {
    padding-bottom: 1rem;
    text-align: justify;
}

.green {
    color: #96be0a;
}

h1 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
    color: #00a0e6;
}

h2 {
    font-size: 1.1rem;
    padding-bottom: 1rem;
    color: #00a0e6;
}

h3 {
    font-size: 0.938rem;
    color: #00a0e6;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 0 1.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.3rem;
    line-height: 1.1;
    color: #96be0a;
}

header {
    display: flex;
    justify-content: end;
    padding-bottom: 2rem;
}

article {
    display: flex;
    gap: 1.5rem;
}

article>div {
    flex: 50%;
}

footer {
    padding-top: 1rem;
    font-size: .8em;
}

@media only screen and (max-width: 49.938rem) {

    #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: 48rem) {
    article {
        display: block;
    }

    article p {
        text-align: left;
    }
}

@media only screen and (max-width: 40rem) {
    #wrapper {
        padding: 1rem;
    }

    header {
        justify-content: center;
    }

    ul li {
        padding-left: 1rem;
    }
}