* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-amaranth-purple: #A93F55;
  --color-gunmetal: #19323C;
  --color-indian-red: #F2545B;
  --color-rose-taupe: #8C5E58;
  --theme-gray: var(--color-gunmetal);
  --theme-primary: var(--color-indian-red);
  --theme-secondary: var(--color-amaranth-purple);
}

.container {
  width: 60%;
  margin: 0 auto;
}

main {
  color: #111;
  font-family: "Playfair Display", serif;
  width: 60%;
  margin: 2.0rem auto;
  font-size: 1.4rem;
  line-height: 3.0rem;
  text-align: justify;
}

article .byline span + span::before {
  content: "\B7\ ";
}

article p,
article blockquote {
  margin-bottom: 2.0rem;
}

article blockquote {
  margin-left: 2.0rem;
  padding-left: 1.0rem;
  border-left: 1.0rem solid var(--theme-primary);
  font-style: italic;
}

header {
  font-size: 1.2rem;
  background: #19323C;
  color: #fff;
  padding: 1.0rem 0;
}

header > div {
  width: 60%;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 2.0rem;
}

.footnotes {
  font-size: 1.0rem;
}

a {
  color: var(--theme-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: var(--theme-secondary);
}
