/**
 * @file
 * Styling for base elements.
 *
 * @author Chad Bauer
 * @date Feb 2024
 */

/*
*,
*::before,
*::after {
  box-sizing: border-box;
}
*/

html {
  font-family: var(--font-sans);
  font-size: 80%;
  font-weight: normal;
  font-style: normal;
  line-height: var(--line-height-base);
}

body {
  margin: 0;
  padding: 0px;
  color: var(--color--site-text);
  background-color: var(--color--site-background);
  background-position: top left; /* LTR */
}

ul {
	padding-left: 1.5em;
}