@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 655px;
    margin: 1rem auto;
    border: solid 4px #72B3DD;
    background-color: #fff;
    overflow: hidden;
    padding: 0.5rem 1rem;
}
h1 {
    margin: 0 0 1rem 4rem;
    font-size: 1.625em;
    line-height: 1.3em;
    color: #4E9DD1;
}
h1:before {
    content: "\2022";
    font-size: 0.7em;
    float: left;
    margin: 1px 0 0 -1.8rem;
}
h2 {
    font-size: 1.188em;
    line-height: 1.3em;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding-left: 0.75rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 1px 0 0 -0.75rem;
}
p a.mail {
    color: #4E9DD1;
}
.logo {
    display: flex;
    justify-content: center;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 0.75rem;
    flex-wrap: wrap;
}
footer span {
    display: block;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer p:last-of-type {
    text-align: center;
    font-size: 1.063em;
    line-height: 1.3;
}
@media only screen and (max-width: 654px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    br {
        display: none;
    }
    footer p:last-of-type br {
        display: block;
    }
    h1 {
        font-size: 1.5em;
    }
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    footer p {
        text-align: center;
        padding-bottom: 1rem;
    }
    footer {
        display: block;
    }
}