/*
      Author: Kevin Gray
	  Date: October 6th, 2021
*/

/* body */
         
body {
	 background-color: aquamarine;
	 font-size: 1.3em; 
}

/* links */
     
	 a {
	   font-size: 1.1em;
	   font-family: Arial, Helvetica, sans-serif;
	   color: Blue;
	   text-decoration: none;
	 }
	 
/* heading style */

h1 {
   font-size: 100&;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: .2em;
   word-spacing: .5em;
   text-align: center;
   color: #FF7F50;
   background-color: #F8F8FF;
}
	   
h2 {
   font-family: Arial, Helvetica, sans-serif;
   text-align: left;
}

/* paragraph */

p {
  font-size: 100%;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  color: #483D8B;
  line-height: 2em;
  margin: 0em;
}

/* Bold Text */

strong {
	   font-weight: bolder;
	   font-variant: small-caps;
}

/* Emphasized Text */

em { 
   font-weight: 700em;
}

  
  
  