@charset "utf-8";
: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: 605px;
    border: solid 1px #000;
    background: #fff;
    padding: 0.5rem 1rem;
}
p {
    padding-bottom: 0.3rem;
    text-align: justify;
}
h1 {
    margin: 0;
    font-size: 2.95em;
    line-height: 1;
}
h1 small {
    font-size: 0.4em;
}
h2 {
    font-size: 1.7em;
    line-height: 1.1;
    padding: 0.5rem 0;
}
h3 {
    font-size: 1.250em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0 0 0.7rem;
    list-style: none;
}
li {
    padding: 0 0 0 13px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    margin: 0 0 0 -13px;
    float: left;
}
p a.mail {
    color: #D22749;
    font-weight: 700;
}
h1, h2, .center {
    text-align: center;
}
.center {
    font-size: 0.97em;
    line-height: 1.2;
}
.center small {
    display: block;
    font-size: 0.65em;
    padding-top: 0.3rem;
}
footer {
    position: absolute;
    right: 1rem;
    bottom: 3rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:579px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 2em;
    }
    h1 small {
        font-size: 0.6em;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}