body {
  margin: 0px;
  font-family: arial;
  }

/* this is a regular blue text: common throughout the site */
p {
  color: #26576E;
  font-size: small;
  }
  
/* this is for lists */
ul {
  color: #3D3C27;
  font-size: x-small;
  }
  
/* add the class="center" tag in the html to center this text versus align="center" */
.center {
  text-align: center;
  }
/* add the class="center" tag in the html to center this text versus align="center" */
.right {
  text-align: right;
  }
  
/* this is for when I do not want hyperlinks to be underlined */
.noUnderline {
  text-decoration: none;
  }
  
/* this text size is used on the global footer links */
.extraSmallText {
  font-size: x-small;
  }

/* this text size is used on the title of the edges page */
.largeText {
  font-size: large;
  }
  
/* this is a green text used on the global footer brand links */
.greenText {
  color: #008000;
  }
  
/* this is a red text used for errors */
.redText {
  color: #ff0000;
  }

/* adds space between each line */
.doubleLined {
  line-height: 2;
  }
  
/* bold */
.bold {
  font-weight: bold;
  }
  
/* italic */
.italic {
  font-style: italic;
  }
  
/* adds indent to the start of the paragraph */
.paragraphIndent {
  text-indent: 20px;
  }


/* this is a center aligned large green font: used for the welcome message on the home page */
.centeredLargeGreen {
  color: #008000;
  font-size: medium;
  font-weight: bold;
  text-align: center;
  }
  
/* this is an aligned large dark-green font: used for the brand names on the home page */
.largeDarkGreen {
  color: #224919;
  font-size: medium;
  font-weight: bold;
  }

  

