* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .color {
    color: #b79052;
}

#wrapper .flex {
    display: flex;
    flex-wrap: wrap;
}

#wrapper .flex div {
    width: 52%;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 20px;
    display: flex;
justify-self: center;
    width: 20%;
}

#wrapper article {
    padding: 20px 40px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #b79052;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#wrapper .button a {
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    background: #b79052;
    border: 2px solid #b79052;
    transition: all ease-in-out 0.2s;
    border-radius: 10px;
    color: #000;
}

#wrapper .button a:hover {
    background: #fff;
    color: #b79052;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .content {
    width: 48%;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
}

#wrapper ul li:before {
    content: url(icon.png);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        border: navajowhite;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }
}

@media (max-width: 767px) {

    #wrapper .content,
    #wrapper .flex div {
        width: 100%;
    }

    #wrapper .flex {
        flex-direction: column;
        align-items: center;
    }

    #wrapper .flex div :is(h3, p) {
        text-align: center;
    }
}