/* 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;
}
/* This is the new style for our dark mode */
body.dark-mode {
  background-color: #333; /* A dark grey background */
  color: #f1f1f1;           /* A light grey text color */
}
/* Style for our hidden Kirby art */
#kirby-art {
  display: none; /* Makes Kirby hidden by default */
  font-family: monospace; /* A font that makes ASCII art look good */
  font-size: 1.2em;
  margin-top: 15px;
  padding: 10px;
  border: 1px solid black;
}

/* This makes the border and background change in dark mode */
body.dark-mode #kirby-art {
  border-color: #f1f1f1;
}