﻿@charset "utf-8";

/* Standard */

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: blue;
    display: inline-block;
    text-decoration: underline;
    white-space: nowrap;
}

a:hover,
a:active,
a:visited {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: 1px solid #000;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

p {
    text-align: justify;
    margin: 0 0 1.25rem;
}

h1 {
    font-size: 1rem;
    line-height: 1.1;
    margin: 1.25rem 0;
}

h2 {
    font-size: .875rem;
    line-height: 1.4;
    margin: 0 0 0;
}

h3 {
    font-size: .875rem;
    line-height: 1.4;
    margin: 0 0 1.25rem;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

ul li {
    padding-left: .937rem;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .25rem;
    height: .25rem;
    border-radius: 50%;
    background: #000;
    margin-left: -.937rem;
    top: .375rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header{
    padding: 2.5rem 2.5rem 1.25rem 2.5rem;
    text-align: right;
}

article{
    padding: 0rem 2.5rem;
}

article p:nth-child(10) a:nth-child(1){
    color: #000;
}

footer{
    padding: 0rem 2.5rem 1.25rem;
}

@media only screen and (max-width: 49.9375rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0.625rem;
    }

    p {
        text-align: left;
    }

    header,
    article,
    footer {
        margin: 0;
        padding: .625rem;
    }
}
