@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #333;
    font: 0.938em Helvetica, Arial, sans-serif;
    line-height: 1.5;
    background: #E8E8E8;
}

#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: 0px solid #333;
    background: #fff;
    overflow: hidden;
    padding: 0rem;
    text-align: left;
}

a {
    color: #333;
    text-decoration: none;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0.1rem 0rem 1.1rem;
    font-size: 1.475em;
    line-height: 1.2;
    color: #ce1443;
    text-transform: uppercase;
    text-align: center;
}

h1 span {
    font-size: 0.938rem;
    text-transform: lowercase;
}

h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #ce1443;
    text-transform: uppercase;
}

ul {
    padding: 0rem 0rem 0.75rem;
    list-style: none;
}

li {
    padding-left: 1rem;
}

li:before {
    content: "\25A0";
    display: block;
    font-size: 0.7em;
    line-height: 1;
    position: relative;
    float: left;
    top: 5px;
    margin-left: -1rem;
    font-family: Arial, sans-serif;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

hr {
    border: none;
    background: #CE1443;
    height: 2px;
    margin: 0rem 0rem 1rem;
    text-align: left;
}

header {
    padding: 0rem;
    position: relative;
}

header a {
    position: absolute;
    top: 0%;
    right: 2%;
    width: 10%;
    height: 24%;
}

article {
    padding: 1rem 1.5rem 0;
}

article>p:first-of-type {
    text-align: justify;
}

article>p:last-of-type {
    text-align: center;
}

article>p:last-of-type a {
    background-color: #ce1443;
    border: 1px solid #ce1443;
    color: #fff;
    padding: 10px 60px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    border-radius: 4px;
    margin-top: 1rem;
}

article>p:last-of-type a:hover {
    background-color: #fff;
    border-color: #ce1443;
    color: #ce1443;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

footer {
    padding: 2rem 1.5rem 1rem;
    background: #CE1443;
    color: #fff;
    text-align: center;
    position: relative;
}

footer img {
    position: absolute;
    right: 1.5rem;
    top: -2.3rem;
}

footer a {
    color: #fff;
}

@media only screen and (max-width: 700px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article>p:first-of-type {
        text-align: left;
    }

    article {
        padding: 0.7rem 1rem 0;
    }

    footer {
        padding: 2rem 1rem 0.5rem;
    }
}

@media only screen and (max-width: 450px) {
    footer img {
        position: static;
        margin-top: -0.5rem;
    }

    h1 {
        font-size: 1.3em;
    }
}