@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em "Segoe UI", Calibri, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 400px;
    border: solid 3px #106FB4;
    background: #fff;
}

p {
    padding-bottom: 0.5rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 400;
}

h1 small {
    font-size: 0.7em;
}

h1 span {
    font-size: 1.5em;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}



header {
    display: flex;
    justify-content: end;
    padding-top: 0.7rem;
}

article {
    padding: 0 1rem;
}

footer {
    padding: .5rem 1rem;
    background: #106FB4;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer p {
    font-size: 0.875em;
    line-height: 1.3;
    padding-bottom: 0;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:399px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }

    .hide_m {
        display: none;
    }

    p :is(span, a) {
        display: inline-block;
    }
}