@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 520px;
    margin: 1rem auto;
    border: 2px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 1.5rem 1.75rem 2rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.4em;
    line-height: 1.1;
    text-align: center;
    color: #90192F;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
footer {
    padding: 0;
    position: absolute;
    bottom: 0rem;
    right: 2rem;
}
@media only screen and (max-width: 519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p {
        text-align: left;
        padding-bottom: 1rem;
    }
    br{
        display: none;
    }
    p a:not(.inline), span{
        display: inline-block;
    }
    footer {
        display: flex;
        justify-content: center;
        position: static;
    }
    h1 {
        font-size: 1.7em;
    }
}