@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 1em/1.3em 'Poppins', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 515px;
  margin: 1rem auto;
  border: solid 2px #231F20;
  background-color: #FFF1D4;
  overflow: hidden;
  padding: 0.6rem 1rem 0;
}
p {
  padding-bottom: 0.5rem;
  text-align: center;
}
h1, h2 {
  font-weight: 600;
}
h1 {
  margin: -0.3rem 0 0;
  font-size: 1.556em;
  line-height: 1.1em;
  text-align: center;
}
h1 span {
  font-size: 0.58em;
  line-height: 1.3;
}
.big {
  font-size: 1.22em;
}
h2 {
  font-size: 1.06em;
  line-height: 1.3em;
  margin-bottom: 0;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.35rem;
}
article p, h1 {
  color: #B51E1B;
}
article > p:first-of-type {
  font-size: 1.28em;
  line-height: 1.3;
}
footer p {
  font-size: 1.2em;
  line-height: 1.3;
}
@media only screen and (max-width:514px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  span, a {
    display: inline-block;
  }
  header {
    flex-direction: column;
    align-items: center;
  }
  h2 {
    text-align: center;
  }
}