@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.3 "Libre Baskerville", serif;
}
#wrapper {
    position: relative;
    max-width: 665px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1.75rem 0 4rem;
    font-size: 1.75em;
    line-height: 1.4;
    font-weight: 600;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 0.9em;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0.25rem;
}
h2, .font {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.375rem 1.25rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: -3px 0 0 -1.25rem;
}
header {
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
header p {
    padding: 0;
    font-size: 0.95em;
    line-height: 1.4;
}
article {
    padding: 1.25rem 1.75rem 0.25rem;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    background-color: #97B8BF;
    position: relative;
}
figure {
    position: absolute;
    top: 0;
    right: 0;
}
footer p {
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.3;
}
@media only screen and (max-width: 664px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    header {
        flex-direction: column;
        gap: 1rem;
    }
    header p, h1 {
        text-align: center;
    }
    br {
        display: none;
    }
    h1 {
        margin: 1rem 0 2rem;
    }
    figure {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    header, article {
        padding: 1rem;
    }
    article {
        padding-bottom: 0.25rem;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
}