@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v36-latin-regular.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v36-latin-700.woff2') format('woff2');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.0625em/1.2 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 620px;
    border: solid 6px #F89C25;
    background: #fff;
    padding: 0.7rem 0.7rem 0;
}
strong, h1 {
    font-weight: 700;
}
p {
    padding-bottom: 0.375rem;
}
h1 {
    margin: 0.5rem 0 0;
    font-size: 1.45em;
    line-height: 1.25;
    color: #F89C25;
}
h1 span {
    font-size: 0.7em;
    font-weight: 400;
}
h1 + p {
    padding-bottom: 0.625rem;
}
header {
    position: absolute;
    top: 0.75rem;
    right: 0.5rem;
}
p a.mail {
    color: #F89C25;
}
.word-spacing {
    word-spacing: 1px;
}
footer p {
    padding: 0.25rem 0;
    border-top: 2px solid #000;
    text-align: center;
}
: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: 609px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        position: static;
        padding-bottom: 0.5rem;
        display: flex;
        justify-content: center;
    }
    article p:first-of-type {
        width: 100%;
    }
    br {
        display: none;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .word-spacing {
        word-spacing: 0;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
}