* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Fira Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .text {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

#wrapper .flex {
    display: flex;
    column-gap: 30px;
    border-bottom: 1px solid rgb(233, 236, 239);
    padding: 16px;
    margin: 0 -16px 16px;
}

#wrapper .logo {
    max-width: 200px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .content {
    background: #fff;
    padding: 16px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px #ccc;
    margin-top: -45px;
    position: relative;
}

#wrapper .header {
    padding: 0;
}

#wrapper .article {
    padding: 20px;
    background: #EFF2F4;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 18px;
    font-size: 27px;
    font-weight: 600;
}

#wrapper h3 {
    font-size: 20px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #f8ae00;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px 11px 45px;
    background: #f8ae00;
    color: #fff;
    border-radius: 5px;
    transition: .2s;
    position: relative;
}

#wrapper .button a:before {
    content: url(btn.jpg);
    position: absolute;
    top: 11px;
    left: 18px;
}

#wrapper .button a:hover {
    opacity: 0.8;
}

#wrapper ul {
    margin: 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 16px;
    }
}

@media all and (max-width: 699px) {
    #wrapper .flex {
        flex-direction: column;
        gap: 15px;
    }
}