@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;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

article p {
    padding-bottom: 1.5rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.3;
    color: #ef3323;
}

h2 {
    font-size: 1.2rem;
    padding-top: .5rem;
}

h2+p {
    padding-bottom: 0;
}

h3 {
    font-weight: normal;
    font-size: 1rem;
    padding-bottom: 1.5rem;
}

ul {
    list-style: none;
    padding-bottom: 1.5rem;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
}

header {
    position: absolute;
    top: 3rem;
    right: 3rem;
}

article {
    padding: 1rem 1.5rem;
}

footer {
    padding: 1rem 0;
    background-color: #58585a;
    color: #fff;
    display: flex;
}

footer>div {
    flex: 50%;
    padding: 0 1.5rem;
}

footer p {
    padding-top: 1rem;
}

.right {
    display: flex;
    align-items: center;
    gap: 1rem 2rem;
    position: relative;
}

.right::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

@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) {
    header {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    footer {
        display: block;
    }

    .right::before {
        display: none;
    }

    .right {
        padding-top: 1rem;
    }
}

@media only screen and (max-width: 35rem) {
    article {
        padding: 1rem;
    }

    h2 {
        padding: 0;
    }

    ul {
        padding-bottom: 1rem;
    }

    footer>div {
        text-align: center;
        padding: 0 1rem;
    }

    .right {
        flex-direction: column;
    }

    .right div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}