* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 880px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 35px 50px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

strong {
    font-weight: 700;
    color: #4B46FF;
}

p {
    margin: 0 0 16px;
    text-align: justify;
}

h1 {
    margin: 20px 0;
    font-weight: 700;
    font-size: 27px;
    line-height: 1.2;
    color: #4B46FF;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    color: #4B46FF;
}

h3 {
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 14px;
    color: #4B46FF;
}

a {
    color: inherit;
    text-decoration: none;
}

a.link {
    color: #0000FF;
    text-decoration: underline;
}

ul {
    padding: 0 0 14px;
    list-style: none;
}

ul li {
    padding-left: 50px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: -25px;
}

img {
    max-width: 100%;
}

@media all and (max-width:849px) {
    #wrapper {
        padding: 16px;
        border: none;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }
}

@media all and (max-width:480px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    h1 {
        text-align: center;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }
}