/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body { 
  padding: 20px; 
  background-color: black;
  color: white; 
  font-family: domine; 
} 

html {
  background-color: #000000;
  background-image: 
    linear-gradient(45deg, #cccccc 25%, transparent 25%, transparent 75%, #cccccc 75%),
    linear-gradient(45deg, #cccccc 25%, transparent 25%, transparent 75%, #cccccc 75%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}




