﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 1rem;
    font-family: "Ubuntu", sans-serif;
    color: #4D4D4D;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #F7F5F0;
    padding: 1rem;
}

header {
    margin: 0;
}

article {
    margin: 0;
}

footer {
    margin: 0;
}

:is(strong) {
    font-weight: 500;
}

:is(h1, h2, h3) {
    font-weight: 500;
}

h1 {
    margin: 1rem 0;
    font-size: 33px;
    line-height: 39px;
    text-align: center;
    color: #00398C;
    padding:10px 1rem;
    background: #FFF2CC;
}

h2 {
    font-size: 20px;
    margin: 1rem 0;
    line-height: 22px;
    color: #C41111;
    text-align: center;
}

h3 {
    font-size:1rem;
    margin: 1rem 0 0;
    line-height: 1.5rem;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0000FF;
    white-space: nowrap;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1rem 20px;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 22px;
    text-indent: -1.5rem;
}

@media all and (max-width:839px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;

    }
    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}