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

html {
    min-height: 100%;
}

body {
    background: #f5f5f5;
    font-family: "Roboto", Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
}

#wrapper {
    max-width: 900px;
    margin: 24px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
    background-color: #fff;
    overflow: hidden;
    position: relative;
}
 
#wrapper .big {
    font-size: 18px;
}

#wrapper .hide {
    display: none;
}

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

#wrapper .logo {
    padding: 18px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

#wrapper article {
    padding: 28px 40px 40px;
}

#wrapper footer {
    position: absolute;
    bottom: 65px;
    right: 40px;
}

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

#wrapper strong {
    font-weight: 700;
}


#wrapper h1 {
    margin: 24px 0 30px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    background: #f4f4f4;
    padding: 20px 24px;
    text-align: left;
    color: #333;
    border-left: 6px solid #FF0000;
}

#wrapper h1 .small {
    font-size: 27px;
}


#wrapper h3 {
    margin: 26px 0 12px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #FF0000;
    text-decoration: none;
}


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

#wrapper a:hover {
    text-decoration: underline;
}


#wrapper ul {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}

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

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

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


@media (max-width: 899px) {
    body {
        background: #fff;
    }

    #wrapper {
        margin: 0;
        box-shadow: none;
    }

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

    #wrapper article {
        padding: 20px;
    }

    #wrapper h1 {
        margin: 22px 0 28px;
    }
}

@media (max-width: 675px) {
    #wrapper footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 20px;
    }
}

@media (max-width: 499px) {
    #wrapper article {
        padding: 18px;
    }

    #wrapper h1 {
        font-size: 25px;
        padding: 16px 18px;
        border-left-width: 5px;
    }

    #wrapper h1 .small {
        font-size: 23px;
    }

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