@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    background: #f4f4f4;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.2;
}

#wrapper {
    background: #f4f4f4;
    margin: 1rem auto;
    max-width: 50rem;
    overflow: hidden;
    position: relative;
    border-radius: 0.1875rem;
}

p {
    text-align: justify;
    hyphens: auto;
    margin: 0 0 1rem;
}
section p:last-child{
    margin-bottom: 0;
}
h1 {
    background-color: #fff;
    margin: 0 0 0.75rem;
    font-size: 2.25rem;
    line-height: 1.15;
    padding: 1rem;
}

h2 {
    font-size: 1.125rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: none;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
    border: none;
}

ul {
    padding-left: 1rem;
}

li {
    list-style-type: none;
}

li:before {
    content: "\25CF";
    float: left;
    margin-left: -0.938rem;
    line-height: 1
}

header {
    margin-bottom: 0.5rem;
}

section {
    background-color: #fff;
    margin: 0 0 0.75rem;
    padding: 1rem;
}

footer p:first-of-type {
    font-size: 0.875rem;
    text-align: center;
}

section :is(a:link, a:visited, a:hover, a:active) {
    background: #C61116;
    color: #fff;
    font-weight: bold;
    padding: 0.438rem 0;
    margin: 1.25rem auto 0.938rem;
    text-align: center;
    display: block;
    width: 42%;
    border-radius: 0.313rem;
    font-size: 0.938rem;
}

section a:hover {
    text-decoration: underline;
}

@media only screen and (max-width:44.9375rem) {

    body,
    h2 {
        font-size: 0.938em;
    }

    p {
        text-align: left;
    }

    body {
        font-size: 0.938em;
    }

    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.625rem;
    }

    h1 {
        font-size: 1.625rem;
    }

    section :is(a:link, a:visited, a:hover, a:active) {
        width: 100%;
        margin: 1rem 1%;
    }
}