/* Keep tables readable without the default alternating highlight. */
table th,
table tr:nth-child(2n) {
  background-color: var(--bg);
}

/* removes shit blockquotes from anemone */
blockquote {
  padding-block: 0;
  padding-inline-start: 1rem;
  border-inline-start-width: 1px;
}

/* removes shit image formatting from anemone */
img {
  height: auto;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
}

/* centers the contents in the footer */
#footer-container {
  justify-content: center;
  text-align: center;
}
#footer-container nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Keep the site dark and remove anemones theme toggle */
.theme-toggle {
  display: none;
}
:root,
html[data-theme="light"],
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #222529;
  --bg-light: #464949;
  --text: #d6d6d6;
  --text-light: #dbd5bc;
  --border: #78b6ad;
  --link: #e2aea2;
  --accent: #78b6ad;
  --accent-light: #87c9e5;
  --accent-text: var(--bg);
}
