@charset "utf-8";
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v22-latin-700.eot');
  src: url('../fonts/poppins-v22-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v22-latin-700.woff2') format('woff2'), url('../fonts/poppins-v22-latin-700.woff') format('woff'), url('../fonts/poppins-v22-latin-700.ttf') format('truetype'), url('../fonts/poppins-v22-latin-700.svg#Poppins') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 700 1em/1.3em 'Poppins', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #008685 url('../images/bg.jpg') bottom right no-repeat;
    overflow: hidden;
    padding: 0;
}
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;
    vertical-align: middle;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.0625em;
    line-height: 1;
    color: #fff;
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
    position: absolute;
    bottom: 0;
    left: 1.625rem;
    width: 67%;
}
header {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
footer {
    position: absolute;
    bottom: 12rem;
    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;
    }
    h1 {
        position: static;
        width: auto;
        margin: 1rem;
        text-align: center;
        line-height: 1.3;
    }
    figure {
        display: flex;
        justify-content: center;
    }
    header, footer {
        padding: 1rem;
        display: flex;
        justify-content: center;
        position: static;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
}