@charset "utf-8";
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v23-latin-600.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/poppins-v23-latin-600.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/poppins-v23-latin-600.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/poppins-v23-latin-600.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/poppins-v23-latin-600.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/poppins-v23-latin-600.svg#Poppins') format('svg');
    /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 600 1.125em/1.3em 'Poppins', Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 470px;
    margin: 1rem auto;
    border: solid 2px #231F20;
    background-color: #FFF1D4;
    overflow: hidden;
    padding: 0.6rem 1rem 0;
}
p {
    padding-bottom: 1rem;
    text-align: center;
}
h1, h2 {
    font-weight: 600;
}
h1 {
    margin: 0.75rem 0;
    font-size: 2.5em;
    line-height: 1.1em;
}
h1 small {
    font-size: 1.125rem;
    line-height: 1.3;
}
h1, h2, .red {
    color: #B51C1C;
}
p.red {
    font-size: 1.25em;
    line-height: 1.3;
}
h2 {
    font-size: 1.3125em;
    line-height: 1.3em;
    padding: 0.5rem 0;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:469px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1{
      font-size: 2em;
    }
    span, a {
        display: inline-block;
    }
    br {
        display: none;
    }
}