@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #0061A5;
    padding: 30px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
}

span {
    white-space: nowrap;
}

.nomargin {
    margin: 0
}

h1 {
    text-align: center;
    margin: 0 0 50px;
    font-size: 30px;
    line-height: 1.1;
    color: #0061A5;
}

h1 small {
    font-size: 20px;
}

h2 {
    font-size: 16px;
}

ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

ul li {
    padding-left: 20px
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 12px;
    height: 12px;
    background: url(../images/symbol.jpg) no-repeat;
    background-size: contain;
    margin-left: -20px;
    top: 6px;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    br {
        display: none;
    }

    h1 br,
    footer p:last-of-type br {
        display: block
    }
}

@media only screen and (max-width: 375px) {
    footer p:last-of-type {
        text-align: center
    }
}
