* {
 box-sizing: border-box;
}

:root {
  --root-bg-color: #002030; /* navy. >just seems right idk */
  --root-highlight-color: #004161; /* lighter blue recommended by paletton */
  --root-text-color: #e3f3fb; /* blue-tinted white recommended by paletton*/
  --root-red-color: #dc2828; /* discord crimson. possibly too dark, test in places*/
  --root-lily-color: #d2a7fd; /* lavender from old superserver */
  --root-mari-color: #ffdbe5; /* arbitrarily color-picked carnation */
}

body {
  background-color: var(--root-bg-color);
  color: var(--root-text-color);
  font-family: Tahoma, Verdana; /* todo: learn how to add other fonts */
  padding: 0;
  margin: 0;
}
header {
  display: flex;
  height: 100px; /* Testing placeholder. Smaller + responsive to screen size when finished */
  width: 100%;
  align-items: center;
  background-color: var(--root-highlight-color);
  border-style: none none groove none;
  border-color: var(--root-text-color);
}
main {
  padding: 1%; /* Testing */
}

a {
  color: inherit;
  text-decoration-line: underline;
}
a:visited {
  color: inherit;
}
a.outbound::after {
  content: ""; /* placeholder for some icon indicating an outbound link */
}
a.citation {
  /* placeholder for some styling+behavior associated with links to library entries */
}

.red {
  color: var(--root-red-color);
}
.lily {
  color: var(--root-lily-color);
}
.mari {
  color: var(--root-mari-color);
}