/*
      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;
	
	 }
	 
	 a:link {
		    color: blue;
	 }
	 
	 a:active {
		      color: #4169E1;
	 }
	 
	 a:hover {
		     color: green;
	 }
	 
	 a:visited {
		       color: #9400D3;
	 }
	 
	 
/* heading style */

h1 {
   font-size: 20 pt;
   font-family: Arial, Helvetica, sans-serif;
   letter-spacing: .2em;
   word-spacing: .5em;
   text-align: center;
   background-color: #F8F8FF;
}
	   
h2 {
   font-size: 16;
   font-family: Arial, Helvetica, sans-serif;
   text-align: left;
   background-color: #1E90FF;
}

/* paragraph */

p {
  font-size: 14pt;
  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;
}
  
/* img */


img:right {
	float: right;
	margin: 10px 0 0 10px;
}
