:root {
  --dark: #0c0c0c;
  --light: #fcfcfc;
  --accent: #0099ff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --dark: #fcfcfc;
    --light: #0c0c0c;
  }
}

body {
	background: var(--light);
	margin: 0 auto;

	font-family:helvetica, verdana, sans-serif;
  font-style: normal;
  font-weight: 250;

	color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

.center-percent-absolute {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  min-width: 300px;
  transform: translate(-50%, -50%);
}

.highlight {
  color: var(--accent);
  font-weight: 900;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-style: dotted;
  font-weight: 750;
}
