﻿@charset "utf-8";

/* Standard */

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

a:hover,
a:active,
a:visited {
    text-decoration: underline;
}

u {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.4;
}

#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid thin #000;
    padding: 20px 70px;
    background-color: #fff;
    overflow: hidden;
}

p {
    text-align: justify;
    margin: 0 0 0.625rem;
}

h1 {
    text-align: center;
    font-size: 20px;
    line-height: 1;
    margin: 10px 0 30px;
    text-decoration: underline;
}

h1 span {}

h2 {
    font-size: 14px;
    line-height: 1;
    margin: 0 0 10px;
}

h3 {
    font-size: 1rem;
    line-height: 1;
    margin: 0 0 0.625rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 38px;
    text-align: justify;
}

ul li:before {
    content: "\2022"
        /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

p a {
    text-decoration: underline;
}

header > a {
    width: 40%;
    display: block;
    margin: 0 auto 30px;
}

@media only screen and (max-width:699px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0.625rem .625rem 0;
    }

    p {
        text-align: left;
    }
    
    ul li{
        padding-left: 22px;
        text-align: left;
    }

    article br {
        display: none;
    }

    header > a {
        width: 70%;
        display: block;
        margin: 0 auto 10px;
    }
}

@media only screen and (max-width:479px) {
    h1 {
        font-size: 1.5em;
    }
}
