﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 750px;
    margin: 16px auto;
    border: 1px solid #231f20;
    padding: 50px 28px 20px;
    background-color: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: "Times New Roman", Times, serif;
    font-size: 0.90625rem;
    line-height: 19px;
    font-weight: 400;
}

header {
    padding: 0 0 10px;
    display: flex;
    justify-content: center;
}

p {
    margin: 0 0 16px;
    text-align: justify;
}

h1 {
    margin: 25px 0;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}

h2 {
    font-size: 0.90625rem;
    margin: 0 0 10px;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
}

h2 strong {
    font-size: 19px;
}

a {
    color: #231f20;
    text-decoration: none;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 10px;
}

li:before {
    content: '\2212';
    float: left;
    margin-top: 2px;
    font-size: 10px;
    text-indent: -10px;
}

img {
    max-width: 100%;
}

@media all and (max-width: 748px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }

    span {
        white-space: nowrap;
    }

    a {
        word-break: break-all;
    }
}