@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.5em "Lucida Sans Unicode", "Lucida Grande", Arial, sans-serif;
    color: #253F8E;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 650px;
    border: solid 2px #253F8E;
    background: #E1E1EB url('../images/bg.jpg') no-repeat bottom right;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem 0;
    font-size: 1.08em;
    line-height: 1.3em;
    padding-left: 1.2rem;
}
h1:before {
    content: "•";
    font-size: 2em;
    float: left;
    margin: 0 0 0 -1.5rem;
    color: #C6C6D8;
}
h1 span {
    font-weight: 400;
}
h2 {
    text-align: center;
    font-size: 1.9em;
    line-height: 1.3;
    color: #FED41D;
    font-weight: 400;
}
h2 img {
    vertical-align: -10px;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 1rem -2.75rem 0 -4.5rem;
}
header {
    padding: 3rem 1rem;
    background-color: #253F8E;
}
article {
    padding: 1.5rem 5rem 1rem;
}
article p.color {
    font-size: 0.77em;
    line-height: 1.4;
    margin: -1.5rem 0 0 0.5rem;
    color: #4E2F8E;
}
footer p {
    transform: rotate(-90deg);
    font-size: 0.7em;
    line-height: 1.3;
    position: absolute;
    right: -45px;
    bottom: 12.2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
article>figure {
    position: absolute;
    top: 164px;
    right: 5px;
}
.button a {
    display: inline-block;
    background: #253F8E;
    color: #fff;
    padding: 0.5rem 1rem;
}
@media only screen and (max-width:649px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #E1E1EB;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header, article {
        padding: 1rem;
    }
    .flexbox {
        margin: 1rem 0;
        align-items: center;
    }
    footer p {
        position: static;
        transform: none;
        text-align: center;
        padding: 0 1rem 1rem;
    }
    article>figure {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 0.75rem;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width: 400px) {
    .flexbox {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    article p:last-of-type {
        margin: 0 0 -1rem;
    }
}