@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1.125em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #8C949E;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: -0.25rem 0 0.25rem;
    font-size: 1.875em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.7em;
}
h1, h2 {
    color: #fff;
}
h2 {
    font-size: 1.375em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
header figure {
    position: absolute;
    top: 3rem;
    right: 2rem;
}
main {
    position: absolute;
    bottom: 20rem;
    right: 4rem;
    width: 45%;
}
footer {
    display: flex;
    gap: 1rem;
}
footer p {
    font-size: 1rem;
    line-height: 1.2;
}
footer p {
    padding-bottom: 0.25rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    main {
        position: static;
        width: auto;
        padding: 2rem;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    main {
        padding: 1rem;
    }
}