/* Default light theme */
body {
  background-color: white;
  color: black;
}

/* Dark theme */
body.dark-theme {
  background-color: black;
  color: white;
}
