:root {
  --my-bg: rgb(200 200 220);
  --my-bg-page: rgb(250 250 255);
  --my-accent1: lightseagreen;
  --my-accent2: steelblue;
  --my-text1: rgb(10 10 20);
  --my-text2: #666;

  /* Rules / dividers */
  --my-rule-color: rgba(255, 255, 255, 0.15);

  /* UI elements */
  --my-toolbar-bg: rgb(50 50 51);
  --my-button-bg: rgb(74 74 77);
  --my-button-bg-hover: rgb(90 90 92);

  /* Bible verse surface */
  --my-verse-bg: rgba(0, 0, 0, 0.15);

  /* Fonts */
  --my-font-default: system-ui, -apple-system, serif;
  --my-font-courier: "Courier New", Courier, monospace;
}

aside {
  color: var(--my-text2);
  margin-bottom: 2rem;
  margin-left: 2rem;
}

blockquote {
  border-left: 0.2rem solid var(--my-bg);
  padding-left: 1rem;
}

p {
  line-height: 1.5em;
  margin-top: 0;
  text-align: justify;
}

h2 {
  margin-bottom: 0.75em;
  margin-top: 0;
}

h3 {
  border-bottom: 1px dotted gray;
  margin-bottom: 0.5em;
  margin-top: 2.5rem;
  padding-bottom: 0.5em;
}

h4 {
  margin-bottom: 0.25rem;
  margin-top: 2em;
}

h5 {
  font-size: 1em;
  margin-bottom: 0;
}

hr {
  background: var(--my-rule-color);
  border: none;
  height: 1px;
  margin: 2rem 0;
}

/* --- BIBLE VERSE --- */
.bible-verse {
  background-color: var(--my-verse-bg);
  border-radius: 1rem;
  margin: 0 auto 1rem;
  padding: 1rem;
}

.bible-verse h6 {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

.bible-verse p {
  margin-bottom: 1rem;
}

.bible-verse p:only-child,
.bible-verse p:last-child {
  margin-bottom: 0;
}
