@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-regular.eot');
    src: url('../fonts/poppins-v24-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'), url('../fonts/poppins-v24-latin-regular.woff') format('woff'), url('../fonts/poppins-v24-latin-regular.ttf') format('truetype'), url('../fonts/poppins-v24-latin-regular.svg#Poppins') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v24-latin-600.eot');
    src: url('../fonts/poppins-v24-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v24-latin-600.woff2') format('woff2'), url('../fonts/poppins-v24-latin-600.woff') format('woff'), url('../fonts/poppins-v24-latin-600.ttf') format('truetype'), url('../fonts/poppins-v24-latin-600.svg#Poppins') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/caveat-v23-latin-700.eot');
    src: url('../fonts/caveat-v23-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/caveat-v23-latin-700.woff2') format('woff2'), url('../fonts/caveat-v23-latin-700.woff') format('woff'), url('../fonts/caveat-v23-latin-700.ttf') format('truetype'), url('../fonts/caveat-v23-latin-700.svg#Caveat') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 400 1.0625em/1.5em 'Poppins', Arial sans-serif;
    color: #fff;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 455px;
    border: solid 1px #000;
    background: #7E8389 url('../images/bg.jpg') top left no-repeat;
    padding: 1rem;
}
p {
    padding-bottom: 1rem;
}
:is(h1,h2,h3, strong){
    font-weight: 600;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.413em;
    line-height: 1.1em;
    text-transform: uppercase;
}
h1 span{
    font-size: 0.7em;
    font-weight: 400;
    text-transform: none;
}
h2 {
    font: 700 3em/1.2 'Caveat', cursive;
    margin-bottom: 2.5rem;
}
h3 {
    font-size: 1.3em;
    line-height: 1.2;
    text-transform: uppercase;
}
.ups {
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
article {
    padding-right: 2rem;
}
footer {
    display: flex;
    gap: 0 0.5rem;
    margin-top: 2rem;
    align-items: center;
}
footer p {
    font-size: 1rem;
    line-height: 1.3;
    padding: 0;
}
.big {
    font-size: 1.125rem;
    line-height: 1.3;
    display: block;
}
.abs {
    position: absolute;
    transform: rotate(-90deg);
    bottom: 21rem;
    right: -8.5rem;
    font-size: 1.125rem;
    line-height: 1.3;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
@media only screen and (max-width:454px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    p :is(a, span:not(.ups)) {
        display: inline-block;
    }
    article br{
        display: none;
    }
    article{
        padding: 0;
    }
    footer p {
        text-align: center;
    }
    footer{
        padding: 0 1rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    figure{
        display: flex;
        justify-content: center;
        margin: 0 0 0.5rem;
    }
    .abs {
        position: static;
        transform: none;
    }
}