/*
Theme Name: Fictional University
Author: Alex Mastny
Version: 1.0
*/

body{
    /*color: orange;*/
}

.usingPageS{
    display: flex;
}

.usingPageP{    
    background-color: ff0000;
    padding: 1em;
    color: #FFF;
}

#debugoverlay {
  position: fixed; /* Sit on top of the page content */
  width: 1px; /* just a pixel */
  height: 1px; /* just a pixel */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3); /* Black background with opacity */
  z-index: 999; /* Specify a stack order in case you're using a different order for other elements */
  cursor: not-allowed; 
  
  
}
#debugtext{
  position: fixed;
  top: 130px;
  left: 0px;
  font-size: 10px;
  color: white;
  background: #ff0000;
  padding: .3em;
}
