@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.1em/1.3em "Roboto Condensed", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.8em;
    line-height: 1.1;
    text-transform: uppercase;
}
h1 span {
    font-size: 0.7em;
    text-transform: none;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    br {
        display: none;
    }
    p {
        text-align: left;
    }
    header {
        display: flex;
        justify-content: center;
        position: static;
        margin-bottom: 1rem;
    }
    article p:first-of-type, h1 {
        text-align: center;
    }
    h1 {
        font-size: 1.5em;
    }
}