@charset "utf-8";
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ubuntu-v20-latin-regular.eot');
    src: local(''), url('../fonts/ubuntu-v20-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2'), url('../fonts/ubuntu-v20-latin-regular.woff') format('woff'), url('../fonts/ubuntu-v20-latin-regular.ttf') format('truetype'), url('../fonts/ubuntu-v20-latin-regular.svg#Ubuntu') format('svg');
}
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ubuntu-v20-latin-700.eot');
    src: local(''), url('../fonts/ubuntu-v20-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'), url('../fonts/ubuntu-v20-latin-700.woff') format('woff'), url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'), url('../fonts/ubuntu-v20-latin-700.svg#Ubuntu') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 400 1em/1.3em 'Ubuntu', Arial, sans-serif;
}
h1, h2, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.75em;
    line-height: 1.2;
}
h1 span {
    font-weight: 400;
    font-size: 0.75em;
}
h2 {
    font-size: 4em;
    line-height: 1;
    margin-bottom: 0.75rem;
}
h2 + p {
    font-size: 1.5em;
    line-height: 1.3;
}
article {
    padding: 1rem 3rem 2.5rem;
}
.nopad {
    padding: 0;
}
.abs {
    position: absolute;
    top: 2rem;
    width: fit-content;
}
.abs :is(h2, p) {
    color: #fff;
    text-align: center;
}
.flex {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
footer {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
}
@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;
    }
    h2 {
        font-size: 3em;
    }
    .abs {
        position: static;
        width: auto;
    }
    .abs :is(h2, p) {
        color: inherit;
    }
    article {
        padding: 1rem 2rem;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
    br {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem;
    }
    .flex {
        flex-direction: column;
        align-items: center;
    }
}