@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 680px;
    margin: 1rem auto;
    border: solid 2px #231F20;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
.center,h1{
    text-align: center;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.9em;
    line-height: 1.2;
}
h1 span{
    font-size: 0.7em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
footer{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
@media only screen and (max-width: 679px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    br{
        display: none;
    }
    p :is(a,span){
        display: inline-block;
    }
    header{
        justify-content: center;
        gap: 0 1rem;
        flex-wrap: wrap;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
    }
    h1{
        font-size: 1.5em;
    }
}