/* this is how you write a note in css */

/* margin is used to create space around elements, outside of any defined borders*/

/* padding is used to gernerate space around an elements content, inside of any defined borders */

/*Margin and padding order top, right, bottom, and left*/



/* ;'s are the ends of statements*/


a{
  color: #1d3d26;
  text-decoration: none; /*removes the line from under a link*/
  /* look for all anchor tags <a> in the index file and execute per
  what is in the brackets*/
}

h1{
  font-family: calibri, arial, sans-serif;
  margin-left: 30px;
}

p{
  margin-left: 40px; 
}

/* A div is a way to position your content, divs do not describe or style
your content*/

#container {
  width: 700px;
  background: #a1a1a1;
   font-family: calibri, arial, sans-serif;
   margin: auto;
}

#container img {
  margin-left: 100px;
  width: 500px;
}

h6{
   font-family: calibri, arial, sans-serif;
   border: 2px solid black;
   /* width style color*/
   /*style: dotted, dashed, solid, double*/
   font-size: 12px;
   text-align: center;
   margin: 5px 200px 5px 200px;
   padding: 10px;
   /*when all sizes are the same , just use the number */   
}












