body {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: var(--ff-body);
  font-size: var(--fs-base, 16px);
  line-height: var(--lh-base, 1.8);
  font-weight: var(--fw-body, 400);
  background-color: var(--c-surface);
  color: var(--c-text);
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: var(--c-link);
  text-decoration: none;
  transition: all .25s ease-out;
}

a:hover {
  color: var(--c-accent);
  opacity: .9;
}

a:focus,
a:hover,
a:active,
input:focus,
button:focus {
  outline: 0
}

strong,
b {
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-heading, 700)
}

ul {
  list-style: disc;
  padding-left: 20px;
}

ol {
  list-style: decimal;
  padding-left: 20px;
}

article {
    width: 100% !important;
    float: none !important;
    position: relative;
}
