@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #231F1F;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em;
  text-align: center;
}
#wrapper {
  position: relative;
  max-width: 500px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 0.5rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 2.5em;
  line-height: 1.1em;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
}
h3 {
  font-size: 1.25em;
  line-height: 1.3em;
  margin-bottom: 0.5rem;
}
h1, h3 {
  font-style: italic;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
h2, li {
  text-align: left;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 1.5rem;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
}
header {
  padding: 0.5rem 1rem;
}
section {
  display: flex;
  justify-content: space-between;
}
section div {
  width: 49%;
}
article {
  padding: 0 1rem;
}
@media only screen and (max-width: 499px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  section {
    flex-direction: column;
  }
  section div {
    width: auto;
  }
  li {
    padding-left: 1rem;
  }
}