/* 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 {
  background-image: url("CBBN_tileBG.png");
  background-repeat: repeat;
  color: black;
  font-family: Verdana;
  
  .white-strip {
    background: white;
    
    width: 80%;  /* stretches across most of the screen */
    max-width: 1400px;  /* but stops growing after this */
    min-height: 200px;   /*makes it tall */
    
    margin: 40px auto;
    
    padding: 20px /* This is the padding inside the white strip to not make text hit the edges.
  
  }
}