@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: lighter 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') bottom right no-repeat;
    overflow: hidden;
    padding: 2rem 2rem 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 1rem;
    font-size: 2.375em;
    line-height: 1.1em;
    padding: 0.625rem 1rem;
    background: #008FD5;
    color: #fff;
}
h1 span {
    font-weight: normal;
    display: block;
    font-size: 0.5125em;
    line-height: 1.3;
}
h1 small {
    font-weight: normal;
    font-size: 0.625em;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0;
    list-style: none;
    font-weight: normal;
}
li {
    padding: 0.25rem 0 0 1rem;
}
li:before {
    content: "";
    float: left;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #008FD5;
    margin: 4px 0 0 -1rem;
}
strong {
    font-weight: 600;
}
header {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 2.5rem;
}
header p {
    flex: 1;
}
.box {
    padding: 0.5rem 0.75rem;
    border: 1px solid #008FD5;
    margin-bottom: 1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.flex div {
    width: 46%;
}
.flex .border {
    width: 51%;
    padding-right: 1rem;
    border-right: 1px solid #DBDCDD;
}
.width {
    width: 79%;
}
footer {
    position: absolute;
    bottom: 1.5rem;
    right: 2.5rem;
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
    .width {
        width: auto;
    }
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .flex .border {
        width: auto;
        padding: 0;
        border: 0;
    }
    .flex div {
        width: auto;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 2em;
    }
}