* {
    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: #1A1A1A;
    overflow: hidden;
    color: #fff;
    font-family: "Barlow", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .block {
    display: block;
}

#wrapper .logo {
    padding: 5%;
}

#wrapper .logo img {
    width: 150px;
}

#wrapper .article {
    padding: 5%;
}

#wrapper .footer {
    padding: 30px;
    position: absolute;
    bottom: 3%;
    right: 5%;
    background: #484848;
    border-left: 5px solid #ffcc00;
    border-bottom: 5px solid #ffcc00;
    border-radius: 0 0 0 40px;
}

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

#wrapper p.link a {
    border: 1px solid #ffcc00;
    color: #ffcc00;
    display: block;
    padding: 10px 16px;
    border-radius: 6px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
}

#wrapper p.link a span {
    font-size: 22px;
    display: inline-block;
    padding-right: 3px;
    line-height: 1;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1,
#wrapper h3 {
    font-family: "Barlow Condensed", sans-serif;
    color: #ffcc00;
    text-transform: uppercase;
    font-weight: 700;
}

#wrapper h1 {
    font-size: 34px;
    line-height: 1;
    padding-left: 23px;
    position: relative;
    margin-bottom: 30px;
}

#wrapper h1:before {
    content: "";
    position: absolute;
    top: 8%;
    left: 0;
    width: 10px;
    height: 84%;
    background-color: #ffcc00;
}

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

#wrapper .width {
    padding-right: 36%;
}

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

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

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

#wrapper ul li:before {
    content: "";
    position: absolute;
    top: 8%;
    left: 0;
    width: 2px;
    height: 84%;
    background-color: #ffcc00;
}

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

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

    #wrapper .footer {
        padding: 16px;
    }

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

@media all and (max-width:755px) {
    #wrapper .footer {
        position: static;
        max-width: 280px;
        margin: 0 auto 30px;
    }

    #wrapper .block {
        display: inline;
    }

    #wrapper .width {
        padding-right: 0;
    }

}

@media all and (max-width:499px) {
    #wrapper .logo {
        display: flex;
        justify-content: center;
    }
}