@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/jost-v15-latin-regular.eot');
    src: url('../fonts/jost-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/jost-v15-latin-regular.woff2') format('woff2'),
        url('../fonts/jost-v15-latin-regular.woff') format('woff'),
        url('../fonts/jost-v15-latin-regular.ttf') format('truetype'),
        url('../fonts/jost-v15-latin-regular.svg#Jost') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/jost-v15-latin-700.eot');
    src: url('../fonts/jost-v15-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/jost-v15-latin-700.woff2') format('woff2'),
        url('../fonts/jost-v15-latin-700.woff') format('woff'),
        url('../fonts/jost-v15-latin-700.ttf') format('truetype'),
        url('../fonts/jost-v15-latin-700.svg#Jost') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 400 1.125em/1.2em 'Jost', Arial sans-serif;
    color: #231F20;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 490px;
    border: solid 1px #231F20;
    background: #fff;
    padding: 2rem 2rem 1rem;
}
p {
    padding-bottom: 1rem;
}
h1, h3 {
    font-weight: 400;
}
h1 {
    margin: 0.5rem 0 1.5rem;
    font-size: 1em;
    line-height: 1.1em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h2, strong {
    font-weight: 700;
}
h3 {
    font-size: 2.6em;
    line-height: 1;
    padding-bottom: 1.7rem;
    text-transform: uppercase;
}
header {
    padding: 0 0 1rem;
    display: flex;
    justify-content: end;
}
article p:first-of-type {
    padding-left: 1.5rem;
    position: relative;
}
article p:first-of-type:before {
    position: absolute;
    left: 0;
    top: 5px;
    height: 78%;
    width: 5px;
    background: #AEB4A4;
    content: "";
}
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-right: 4rem;
}
: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:489px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a {
        display: inline-block;
    }
    br {
        display: none;
    }
    h3 {
        font-size: 1.8em;
    }
    footer {
        padding: 0;
        flex-direction: column;
        align-items: center;
    }
    figure {
        margin-bottom: 1rem;
    }
    header {
        justify-content: center;
    }
    article p:first-of-type:before {
        height: 87%;
    }
}