/* 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." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

body.dark {
  background: #0b0b0f;
  color: #d0d0d0;
  font-family: Arial, sans-serif;
}

body.dark a {
  color: #8ab4ff;
}

body.dark h1, body.dark h2 {
  color: #ffffff;
}

body.metal {
  background: linear-gradient(#cfcfcf, #8e8e8e);
  color: black;
  font-family: "Verdana", sans-serif;
}

body.metal h1 {
  background: linear-gradient(#ffffff, #999999);
  border: 2px solid #666;
  padding: 8px;
  box-shadow: 2px 2px 0 #333;
}

body.metal a {
  color: blue;
  text-decoration: underline;
}


