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

html {
    min-height: 100%;
}

body {
    background: none;
}

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

#wrapper .title {
    background: #F5F0E6;
    padding: 20px 30px;
}

#wrapper .width {
    flex: 1 1 0;
}

#wrapper .border {
    padding-left: 10px;
    margin-bottom: 25px;
    border-left: 2px solid #000;
}

#wrapper .content {
    background: #F5F0E6;
    padding: 16px;
    width: 330px;
    display: flex;
    flex-direction: column;
}

#wrapper .content ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 0;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 20px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

#wrapper .footer {
    padding: 20px 30px;
    background: #F5F0E6;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span {
    font-size: 17px;
}

#wrapper h1 {
    margin-bottom: 7px;
    font-size: 28px;
    font-weight: 700;
}

#wrapper h2 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 13px;
}

#wrapper h2 span {
    color: #f0b849;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    color: #EBB64E;
}

#wrapper .avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

#wrapper h4 span {
    color: #f0b849;
}

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

#wrapper .button a {
    display: inline-block;
    padding: 11px 15px;
    background: #ebb64e;
    color: #fff;
    border-radius: 5px;
    transition: .2s;
}

#wrapper .button {
    margin-top: 20px;
}

#wrapper .button a:hover {
    background: #000000;
}

#wrapper ul {
    list-style: none;
}

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

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

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

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

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

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

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

@media (max-width: 767px) {
    #wrapper .content {
        width: 100%;
    }
}