/* ========== site background elements */
body {
  
  /* ===== site background color */
  background-color: white; 
  
  /* ===== center site elements */
  display: flex; 
  align-items: center; 
  justify-content: center; 
  min-height: 100vh; 
  
  /* ===== remove site margins */
  margin: 0px; 
  padding: 0px; 
  
  }

/* ========== site scrollbar */
*::-webkit-scrollbar {
  background-color: grey;
  width: 10px; }

*::-webkit-scrollbar-thumb {
  background-color: black; }
  
/* ========== set default styles */
* {
  
  color: #332E28; 
  text-align: justify; 
  margin: 0px; 
  
  }

/* ===== set default <p> style */
p {
  
  font-family: "Atkinson Hyperlegible Mono", monospace, courier; 
  font-size: 10px; 
  padding: 10px; 
  
  }

/* ===== set default <h1> style */

h1 {
  
  font-family: times, "Times New Roman", serif; 
  font-size: 30px; 
  padding: 10px; 
  
  }