:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 566px;
    background: #fff;
    border: solid thin #000;
}

header {
    padding: 16px 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row-reverse;
}

.header-flex-content:nth-of-type(1) {
    width: 56%;
    font-size: 93%;
    line-height: 1.3;
}

article {
    padding: 0 15px;
}

.flex-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content:nth-of-type(1) {
    width: 50%;
}

.flex-box-content:nth-of-type(2) {
    width: 47%;
}

.text-center {
    text-align: center;
}

.justify {
    text-align: justify;
    hyphens: auto;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(h1, h2) {
    line-height: 1.2;
}

h1 {
    font-size: 22px;
}

h1 span {
    font-size: 80%;
    font-weight: 400;
}

h2 {
    font-size: 16px;
    margin: 0 -10px 4px;
    padding: 3px 9px;
    background: #ebebeb;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 12px 15px;
}

ul li {
    list-style: none;
    text-indent: -15px;
}

ul li:before {
    font-size: 20px;
    margin-right: 15px;
    position: relative;
    top: -1px;
    float: left;
    content: "\2022";
}

footer {
    padding: 10px 15px 16px;
}

@media screen and (max-width: 565px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    .justify{
        text-align: left;
    }

    br {
        display: none;
    }
}

@media screen and (max-width: 455px) {
    .header-flex{
        display: block;
    }

    .header-flex-content:nth-of-type(1){
        margin-top: 10px;
    }

    .flex-box{
        display: block;
    }

    :is(.header-flex-content:nth-of-type(1), .flex-box-content){
        width: 100% !important;
    }

    .bottom{
        margin-bottom: 0 !important;
    }
}