html,
body {
  margin: 0;
  padding: 0;
}
[hidden] {
  display: none;
  visibility: hidden;
  opacity: 0;
}
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
}
body .container {
  max-width: 900px;
  margin: auto;
}
body a {
  color: inherit;
}
body .header {
  padding: 30px;
}
body .header img {
  height: 30px;
}
body .hero {
  position: relative;
}
body .hero img {
  width: 100%;
}
body .hero h1 {
  position: absolute;
  bottom: 1em;
  left: 1em;
  right: 1em;
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: 200;
}
body .main {
  padding: 1em;
  max-width: 600px;
  text-align: center;
  margin: auto;
  line-height: 1.8em;
  margin-top: 3em;
}
body .faq {
  padding: 1rem;
}
body .faq h2 {
  color: #4B4B4B;
  font-size: 1rem;
}
body .plenish {
  padding: 1rem;
  text-align: center;
}
body .plenish h2 {
  font-weight: 200;
}
body .plenish h2 b {
  font-weight: 400;
}
body .plenish img {
  width: 15rem;
  height: auto;
  margin-top: 3rem;
}
body .footer {
  margin-top: 4em;
  background-color: #FEFCF2;
  padding: 4em 1rem;
  text-align: right;
}
body .footer h2 {
  font-size: 1rem;
}
body .footer img {
  width: 10rem;
  margin-top: 2em;
}
.ac {
  border-bottom: solid 1px #eee;
  padding: 1em 0;
  box-sizing: border-box;
}
.ac .ac-header {
  margin: 0;
  padding: 0;
}
.ac .ac-trigger {
  color: #111;
  text-align: left;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.25s ease;
  position: relative;
  text-decoration: none;
  margin: 0;
  border: 0;
  padding: 1px;
  font-family: 'DM Sans';
  padding-right: 20px;
}
.ac .ac-trigger::after {
  content: "+";
  text-align: center;
  width: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 10px;
  top: 50%;
}
.ac .ac-panel {
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: linear;
}
.ac .ac-panel .ac-text {
  color: #111;
  padding: 1em 0;
  margin: 0;
  text-align: left;
}
.ac.js-enabled .ac-panel {
  visibility: hidden;
}
.ac.is-active .ac-panel {
  visibility: visible;
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: "–";
}
