@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #2B2C2E;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    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;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    padding: .5rem 0;
}

h2 {
    font-size: 1.125rem;
    padding-bottom: .5rem;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 .5rem 1rem;
}

ul li:before {
    content: "\1F782";
    float: left;
    margin-left: -1rem;
    color: #B1B0B1;
}

.section {
    padding: 1rem;
    border: 1px solid #D4D4D4;
    border-bottom: none;
}

.section>*:last-child {
    padding-bottom: 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    gap: 1rem 2rem;
    align-items: center;
}

a.logo_small {
    flex: 0 0 128px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    padding: 0 0 .5rem;
}

footer h2 {
    padding-bottom: 1rem;
}

footer {
    border-bottom: 1px solid #D4D4D4;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 44rem) {
    header {
        padding: 0.5rem 0;
    }

    a.logo_small {
        display: none;
    }

    h1 {
        text-align: center;
        font-size: 1.4rem;
    }
}