@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: normal;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
header p {
    padding: 0.75em 0 2rem;
    width: 420px;
    color: #fff;
    text-align: justify;
}
footer {
    display: flex;
    justify-content: center;
}
.font {
    margin-bottom: 2rem;
}
.box {
    color: #fff;
    position: absolute;
    top: 10.75rem;
    right: 10.875rem;
    text-align: center;
    line-height: 1.2;
    font-size: 0.875em;
    transform: rotate(-8deg);
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        padding: 0;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #013066;
        padding: 1rem 1rem 0;
    }
    header br {
        display: none;
    }
    header p {
        text-align: left;
        width: auto;
    }
    .box {
        padding: 1rem 1rem;
        width: 156px;
        height: 156px;
        border-radius: 100%;
        background: #F37022;
        position: static;
        margin: 0 auto 1rem;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 1rem;
    }
}