/* =============== Color styling ===============
   ---- These styles provide a basic layout ----
   ---- for presentations, with different   ----
   ---- colors for projection, screen, and  ----
   ---- printed handouts.                   ----
   ============================================= */

/* =============== Default theme =============== */

/* -------------- General styling -------------- */

html, body { 
  color: black; 
  background: white; 
  }


/* --------------- Screen styling -------------- */

@media screen { 

}

/* --------------- Print styling --------------- */

@media print { 

* { 
  color: black; 
  background: white; 
  }

}

/* ------------- Projection styling ------------ */

@media projection { 

html, body { 
  color: black; 
  background: white; 
  }

div.projection { 
  color: black; 
  background: white; 
  }

h1, h2 { 
  border-bottom: thick solid black; 
  }

pre { 
  }

}

