/* theme.css */

/* Default slide styling */
section {
  background-color: white;
  color: black;
}

/* Sunset theme styling */
section.sunset {
  background-color: #e62e00;
  color: #fffff2;
}

/* Dark theme styling */
section.dark {
  background-color: #303033;
  color: #f8f8ff;
}

