/* 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 {
  margin: 20px;
  font-size: 18px; /*for the entire page*/
  background-color: #BABAB0; /*background color is grey*/
  }    /* end of body*/


/*b/c ul part of body we can insert ul manipulate into body below*/ 
  ul {  
  list-style-type: none; 
  text-align: center;
  line-height: 4.0; } /*to adj. spacing for folder tabs decorations*/
  /*color and decorations changes for hyperlinks, and to remove bullet points from ul we want them to turn yellow when clicked on*/  

  a {
  color:rgb(204,204,0);
  text-decoration: none;
	}/*for hyperlinks directly*/ 


h1{
 text-align: left;
} /*to move and change title*/

p {
text-align: left; 
} /* to move and change tagline*/ 
