:root {
  --primary-bg-color: #120629;
  --white-text-color: #f3f4f4;
  --highlight-color: #cf0dff;
}

header.bar,
footer.bar {
  background-color: var(--primary-bg-color);
  padding: 1em;
  color: var(--white-text-color);
  width: 100%;
}

footer.bar {
  position: absolute;
  bottom: 0;
  text-align: right;
  font-size: smaller;
  width: 100%;
}

p {
  margin: 12px 0;
}

.title {
  font-size: larger;
}

.subtitle {
  font-size: medium;
  margin-top: 12px;
}

.note {
  font-size: x-small;
}

button {
  background-color: black;
  color: var(--highlight-color);
  border: 0;
  outline: 1px solid var(--highlight-color);
  cursor: pointer;
  padding: 6px 12px;
}

a {
  color: var(--highlight-color);
}

/* Markdown elements */
em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

hr {
  margin: 16px 0;
  border: 1px dotted var(--highlight-color);
}
