:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 920px;
    background: #fff;
    border: solid thin #000;
}

header {
    padding: 16px 15px;
}

article {
    padding: 16px 15px;
}

.bor{
    border: 1px solid #808080;
    padding: 10px;
    margin-bottom: 16px;
}

.avata{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: column;
}

.left{
    margin-left: 33px;
}

.flex-box{
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content:nth-of-type(1){
    width: 69%;
}

.flex-box-content:nth-of-type(2){
    width: 27%;
    background: url(bg.jpg) no-repeat left 163px;
}

.color{
    color: #808080 !important;
}

.blau{
    color: #1964ff !important;
    font-weight: 700 !important;
}

.margin-bottom{
    margin-bottom: 0;
}

.banner img{
    display: block;
}

.blue-bg{
    background: #1964ff;
    padding: 15px;
}

.button{
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 134px;
    display: block;
    color: #fff !important;
    font-weight: 700;
    border: 1px solid #fff;
}

:is(h1, strong){
    font-weight: 700;
}

h1 {
    font-size: 19px;
    margin: 0 0 16px;
    line-height: 1.2;
}

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 20px 20px;
}

ul li {
    list-style: none;
    text-indent: -20px;
    margin-bottom: 4px;
}

ul li:before {
    font-size: 20px;
    margin-right: 20px;
    position: relative;
    top: -3px;
    float: left;
    content: "\25A0";
    color: #1964ff;
}

footer {
    padding: 16px 15px;
    background: #07262d;
}

.footer-flex{
    display: flex;
    justify-content: center;
    gap: 3px;
    align-items: center;
}


@media screen and (max-width: 919px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block){
        display: none;
    }

    .flex-box-content:nth-of-type(2) {
        background: #fff;
    }

    .left{
        margin-left: 0;
    }
}

@media screen and (max-width: 650px) {
    .flex-box{
        display: block;
    }

    .flex-box-content{
        width: 100% !important;
    }

    .flex-box-content:nth-of-type(2){
        text-align: center !important;
    }
}