﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



body {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: 1px solid #000;
    padding: 75px;
    overflow: hidden;
    background-color: #fff;
}

h1 {
    margin: 2rem 0;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    font-weight: 500;
}

h2 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px;
    font-weight: 300;
}

p {
    margin: 0 0 1rem 0;
}

header {
    margin: 0 0 35px;
}

strong {
    font-weight: 500;
}

footer {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}

a ins {
    color: #0000ff;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin: 0 0 30px 30px;
    list-style: none;
}

ul li {
    padding-left: 28px;
    margin-bottom: 5px;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: 0;
    font-size: 25px;
    text-indent: -28px;
}

img {
    max-width: 100%;
}

@media (max-width: 898px) {
    #wrapper {
        padding: 16px;
        border: none;
        hyphens: auto;
        margin: 0;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }

    span {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    ul {
        margin-left: 0;
    }
}