@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 1em/1.3em "Montserrat", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: -2rem 0 0.75rem -2rem;
  font-size: 3.125em;
  line-height: 1.1em;
  width: fit-content;
  background: #A7213B;
  color: #fff;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 2;
}
h1 span {
  font-size: 0.7em;
  line-height: 0;
}
h2, h3 {
  font-size: 1.875em;
  line-height: 1;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
h1, h2, h3 {
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
}
h2 {
  color: #B63353;
  border-bottom: 0.5rem solid #B63353;
}
h3 {
  color: #fff;
  border-bottom: 0.5rem solid #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul {
  padding: 0 0 8rem;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "\2022";
  float: left;
  font-family: Arial, sans-serif;
  margin: -1px 0 0 -1.3rem;
}
header {
  padding: 0;
}
article {
  padding: 0 2rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 0;
}
.flex div {
  width: 47%;
}
footer {
  padding: 1rem;
  background: #A7213B;
  width: 47%;
  position: absolute;
  bottom: 0;
  right: 0;

}
footer p {
  color: #fff;
  line-height: 1.4;
  font-size: 0.875em;
}
.bg {
  padding: 0.25rem;
  background: #fff;
  border-radius: 0.375rem;
}
.bg figure {
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  border: 2px solid #B63353;
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
  }
  h1 {
    margin: 0 0 1rem;
    font-size: 2em;
  }
  article {
    padding: 1rem;
  }
  .flex {
    flex-direction: column;
  }
  .flex div {
    width: auto;
  }
  footer {
    position: static;
    width: auto;
  }
  ul {
    padding-bottom: 1rem;
  }
}