@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 420px;
    border: solid 1px #000;
    background: #1277BB;
    text-align: center;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0.5rem;
    font-size: 1.652em;
    line-height: 1.1em;
}

h1 small {
    font-size: 0.6em;
}

h2 {
    color: #FBEBA7;
    font-size: 1.8em;
    line-height: 1.3;
    padding-bottom: 1rem;
}

h3 {
    font-size: 1.188em;
    line-height: 1.3;
    color: #1277BB;
    padding-bottom: 1rem;
}

.title {
    background: #FBEBA7;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 16px;
}

ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}

header {
    padding: 1rem 1rem 0;
}

article {
    padding: 0;
}

.title :is(h1, p),
footer :is(h2, p) {
    color: #1277BB;
}

.title,
section {
    padding: 1rem 1rem 0;
}

section {
    border-top: 2px solid #fff;
}

section p,
header p {
    color: #fff;
}

footer {
    padding: 1rem 1rem 0;
    background: #fff;
}

.box p {
    font-size: 0.875em;
    line-height: 1.2;
    padding-bottom: 0.5rem;
}

.box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer p {
    text-align: left;

}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:419px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    header br,
    article br {
        display: none;
    }

    p :is(span, a) {
        display: inline-block;
    }
    .box{
        flex-direction: column;
        align-items: center;
    }
     .box p{
        text-align: center;
     }
}