@charset "utf-8";
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v13-latin-regular.eot');
  src: url('../fonts/inter-v13-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v13-latin-regular.woff2') format('woff2'), url('../fonts/inter-v13-latin-regular.woff') format('woff'), url('../fonts/inter-v13-latin-regular.ttf') format('truetype'), url('../fonts/inter-v13-latin-regular.svg#Inter') format('svg');
}
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v13-latin-700.eot');
  src: url('../fonts/inter-v13-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v13-latin-700.woff2') format('woff2'), url('../fonts/inter-v13-latin-700.woff') format('woff'), url('../fonts/inter-v13-latin-700.ttf') format('truetype'), url('../fonts/inter-v13-latin-700.svg#Inter') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.19em 'Inter', Arial, sans-serif;
}
h1, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: solid 2px #FECB8B;
    background: #FFFABC url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 0.75rem 3.75rem 0 1rem;
}
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 0.5rem;
    font-size: 1.35em;
    line-height: 1.3;
}
@media only screen and (max-width: 549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0 1rem;
        background: #FFFABC;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        padding: 0.5rem 1rem;
        margin: 0 -1rem 0.5rem;
        background: linear-gradient(90deg, #FDCB8C 40%, transparent);
    }
}