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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #1A1A18;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 880px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.74);
    background-color: #4796D1;
    overflow: hidden;
    padding: 20px 57px;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    padding: 0;
}

#wrapper article {
    padding: 0;
}

#wrapper footer {
    padding: 0;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
}

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

#wrapper h1 .line {
    position: relative;
    display: inline-block;
}

#wrapper h1 .line::before {
    content: "";
    border-top: 2px solid #1A1A18;
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
}

#wrapper h3 {
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: 700;
}

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

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

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

#wrapper ul li:not(:last-child) {
    margin-bottom: 4px;
}

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

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

#wrapper .big {
    font-size: 24px;
    line-height: 1.5;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #1A1A18;
}

#wrapper .big span {
    font-size: 70px;
    font-weight: 900;
}

#wrapper .bottom {
    background: #FFED00;
    padding: 20px;
    width: 400px;
    margin: 0 -70px 0 auto;
    transform: rotate(-5deg);
    transform-origin: center;
}

#wrapper .link {
    display: inline-block;
    padding-left: 20px;
    position: relative;
}

#wrapper .link::before {
    content: "";
    background: url(icon.png) no-repeat 0 0/100% auto;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: -2px;
}

#wrapper .logo {
    margin-top: -52px;
}

@media (max-width: 879px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        padding: 20px 16px;
    }

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

    #wrapper .bottom {
        margin-right: -25px;
    }
}

@media (max-width: 779px) {
    #wrapper .bottom {
        width: auto;
        transform: none;
        margin: 0;
    }

    #wrapper .logo {
        margin-top: 0;
    }
}

@media (max-width: 599px) {
    #wrapper .big span {
        font-size: 11vw;
    }

    #wrapper .big {
        font-size: 4vw;
    }
}

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