@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: 530px;
    border: solid 1px #000;
    background: #fff;
    padding: 1rem 1rem 0.5rem;
}

p {
    padding-bottom: 0.5rem;
    text-align: justify;
}

h1 {
    margin: 0rem 0rem 0.5rem 1rem;
    font-size: 1.692em;
    line-height: 1.1em;
}

h1 small {
    font-size: 0.7em;
}

h1 span {
    display: block;
    font-size: 0.7em;
    padding-left: 1rem;
}

h1 span:before {
    content: "\2010";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}

h1:before {
    content: "\25a0";
    font-size: 0.5em;
    float: left;
    margin: 0 0 0 -16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

header {
    padding: 0 0 0.5rem;
    display: flex;
    justify-content: center;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:529px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }

    p :is(span, a) {
        display: inline-block;
    }

    .hide_m {
        display: none;
    }
}