@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em Calibri, sans-serif;
    color: #1C387E;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 505px;
    border: solid 1px #1C387E;
    background: #fff;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.5em;
    line-height: 1.1em;
}

h1 small {
    font-size: 0.7em;
}

h1 i {
    font-size: 0.9em;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0.5rem 0rem 1rem 0rem;
    list-style: none;
    font-size: 1.188em;
    line-height: 1.3;
    color: #000;
}

li {
    padding: 0 0 0 50px;
}

ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -25px;
}

.center {
    text-align: center;
    font-size: 1.063em;
    line-height: 1.3;
    font-weight: 700;
}

footer {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.font {
    font-family: Segoe, "Segoe UI", sans-serif;
    font-size: 0.875em;
    line-height: 1.3;
    padding: 0 0 0.4rem 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    padding: 1rem 1rem 0.5rem;
}

@media only screen and (max-width:503px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p :is(span, a) {
        display: inline-block;
    }

    br {
        display: none;
    }
}