@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #6B696B;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    white-space: nowrap;
}

a.link {
    text-decoration: none;
    color: #6B696B;
}

p {
    margin: 0 0 1rem;
}

h1 {
    font-size: 1.5em
}

h2 {
    font-size: 1.125em;
}

h3 {
    font-size: 1.125em;
    margin: 0 0 16px
}

ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

ul li {
    padding-left: 16px
}

ul li:before {
    content: '\1F782';
    color: #B1B0B1;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

header {
    margin: 0 0 65px
}

.content {
    border: 1px solid #D4D4D4;
}

.section {
    padding: 16px;
    border-bottom: 1px solid #D4D4D4;
}

.flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    column-gap: .625rem
}

.flex img {
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    padding: 0 .5em;
}

footer {
    padding: 1rem
}

footer p:last-of-type {
    margin: 0
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        margin: 0 0 1rem
    }
}

@media only screen and (max-width: 768px) {
    .flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center
    }
}

