@charset "utf-8";

: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: 470px;
    border: solid 2px #5F0126;
    background: #fff;
}
hr{
    border: none;
    border-bottom: 1px solid #5F0126;
}
p {
    padding-bottom: 0.7rem;
}
h1,h2{
    color: #5F0126;
}

h1 {
    margin: 0 0 0.5rem;
    font-size: 1.492em;
    line-height: 1.1em;
    text-align: center;
}

h1 small {
    font-size: 0.7em;
    display: block;
}
h2{
    font-size: 1.375em;
    line-height: 1.3;
    font-style: italic;
    font-weight: 400;
    padding-bottom: 0.5rem;
}
header {
    padding: 1rem 1rem 0.5rem;
}

article {
    padding: 0 1rem;
}

footer p{
    padding: 0.3rem 1rem 0.7rem;
    background: #5F0126;
    color: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:469px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }


    p :is(a,span) {
        display: inline-block;
    }
}