@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: #1A1102;
    font: 1em/1.3em Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 550px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0.8rem 1rem 0 8rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.1em;
    line-height: 1.1;
}
h2 {
    color: #4472C4;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font: 700 2em/1.3em 'Roboto Condensed', Arial, sans-serif;
    text-shadow: 1px 0 0 #44546A, 1px 0 0 #44546A, 0 1px 0 #44546A, 0 0px 0 #44546A, 1px 1px #44546A, -1px -1px 0 #44546A, 1px -1px 0 #44546A, -1px 0px 0 #44546A
}
a {
    color: #1A1102;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    position: absolute;
    top: 0.7rem;
    left: 1rem;
}
@media only screen and (max-width: 629px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    header {
        position: static;
    }
}