﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;

    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

header {
    padding: 30px;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 0 95px;
}

footer {
    padding: 0 95px 80px;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

.center {
    text-align: center;
}

h1 {
    margin: 1.5rem 0;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

h2 {
    font-size: 18px;
    margin: 1.5rem 0;
    line-height: 22px;
}

h3 {
    font-size: 1rem;
    margin: 1rem 0;
    line-height: 1.25rem;
}

p {
    margin: 0 0 1.5rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1.5rem 1.25rem;
    list-style: none;
}

.link {
    color: #0000FF !important;
    text-decoration: underline !important;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 21px;
    margin-top: 1px;
    text-indent: -1.5rem;
}

@media all and (max-width:800px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;

    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 0 1rem;
    }

    header {
        padding: 16px 1rem 1rem;
    }

}