@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 1em/1.3em 'Overpass', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 850px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1 {
  margin: 0;
  font-size: 1.5em;
  line-height: 1.3;
  background: #D50F2F;
  color: #fff;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 23rem;
  left: 0.5rem;
}
h1 span {
  font-weight: normal;
  display: block;
}
h2 {
  font-size: 1.125em;
  line-height: 1.3;
  color: #D50F2F;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0.5rem 0 1rem;
  list-style: none;
}
li {
  padding-left: 1rem;
}
ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -1rem;
}
article {
  padding: 1rem 4rem;
}
article p {
  font-size: 1.125em;
  line-height: 1.3;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex div {
  width: 48%;
}
footer {
  padding: 1rem 2rem 0.5rem;
  background: #D50F2F;
  color: #fff;
}
footer h2 {
  color: #fff;
}
@media only screen and (max-width:849px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
  }
  h1 {
    position: static;
    margin-bottom: 1rem;
    text-align: center;
  }
  .flex {
    display: block;
  }
  .flex div {
    width: auto;
  }
}