/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  --text-color: rgb(120 120 120 / 100%);
  --section-bg: rgb(40 40 40 / 100%);
  --body-bg: rgb(0 0 0 / 100%);
}

body {
  background-color: var(--body-bg);
  color: var(--text-color);
  font-family: "Courier New";
  font-size: 12px;
}

pre {
  background-color: var(--body-bg);
  color: darkred;
  font-family: "Courier New";
  font-size: 12px;
  text-shadow: 0px 5px red;
}

section {
  font-size: 12px;
  color: var(--text-color);
  background: var(--section-bg);
}

div {
  font-family: "Courier New";
  font-size: 12px;
  text-align: center;
  /*padding:4px;*/
  width:800px;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

h2 {
  color: var(--text-color);
  font-size: 14px;
}

a {
  color: blue;
  font-size: 14px;
}

nav {
  background: var(--section-bg);
}

