/* reset all */

html {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    font: 16px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a,
img {
    outline: none;
    border: none;
}

img {
    max-width: 100%;
    display: inline-block;
}


/* body set-up */

body {
    font-family: 'Arial', sans-serif;
    font-size: .875rem;
    line-height: 1.3;
    color: #000;
    background: #fff;
    font-weight: normal;
}


/* main style */

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

u {
    text-decoration: underline;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: underline;
}

p {
    margin: 0 0 .937rem;
}

h1 {
    display: block;
    font-size: .937rem;
    font-weight: bold;
    line-height: 1;
    margin: 2.187rem 0 1.562rem;
    text-align: center;
}

h2 {
    font-size: .937rem;
    line-height: 1;
    margin: 0 0 .937rem;
    color: #E8A202;
}

ul {
    padding: 0;
    margin-bottom: 1.25rem;
    list-style: none;
}

ul p {
    margin-bottom: 0;
}

ul li {
    padding-left: 3.125rem;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .312rem;
    border-radius: .312rem;
    background: #000;
    margin-left: -1.562rem;
    top: .437rem;
}


/* layout  */

#wrapper {
    display: block;
    max-width: 750px;
    margin: .625rem auto;
    padding: 4.375rem 3.125rem;
    border: 1px solid #ddd;
    box-shadow: 0 0 .875rem .25rem #eee;
}

header {
    position: relative;
}

header a {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10%;
    height: 10%;
    display: block;
    margin: 0 auto .625rem;
}

header img {
    display: block;
}

article p a {
    text-decoration: underline;
}

footer {
    color: #E8A202;
    margin-top: 1.25rem;
    font-size: 1.062rem;
}
footer a{
    color: #808080;
}

@media only screen and (max-width: 829px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: .625rem;
        font-size: .875rem;
    }

    h2 {
        font-size: .875rem;
    }

    h2,
    p,
    ul,
    h1 {
        margin-bottom: .625rem;
    }

    ul li {
        padding-left: 1.562rem;
    }
}

@media only screen and (max-width:479px) {}
