@charset "UTF-8";
.toggle {
  position: absolute;
  left: -9999px;
}
.toggle + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
  user-select: none;
}
.toggle + label::before {
  content: "▶";
  font-size: 0.9rem;
  color: black;
  line-height: 1;
}
.toggle:checked + label::before {
  content: "▼";
}
.toggle:checked + label + .toggleable-body {
  display: block;
}

.toggleable-body {
  display: none;
  margin-top: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  height: 100%;
  width: 100%;
}

body {
  background-color: #f5f5f5;
  padding: 0;
  font-size: 1.6rem;
  height: 100%;
  width: 100%;
  line-height: 1.5;
  font-family: Lato, Helvetica, Arial, sans-serif;
}

header {
  padding-top: 5rem;
  padding-bottom: 1rem;
}
header li.active, header li.active a {
  color: #7957d5;
  cursor: default;
  text-decoration: none;
  font-style: italic;
}

footer {
  width: 100%;
  color: #666666;
  opacity: 0.5;
  font-size: 70%;
}
footer .row {
  padding-bottom: 20px;
}
footer a {
  text-decoration: none;
  color: inherit;
}

.quote {
  border-left: 0.3rem solid #7957d5;
  margin-left: 0;
  margin-right: 0;
  padding-left: 1rem;
}

/*# sourceMappingURL=styles.css.map */