/* 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;
  max-width: 800px;    /* Limits how wide the text gets */
  margin: 0 auto;      /* Centers the box on the screen */
  padding: 20px;
}

.dark-mode {
  filter: invert(100%) hue-rotate(180deg);
  background-color: #fff; /* Ensures there is a color to invert if the page is transparent */
}

.dark-mode img, .dark-mode video {
  filter: invert(100%) hue-rotate(180deg);
}



html {
  transition: filter 0.3s ease;
  
}
