/* This is a comment in CSS. */
/*     */

/*
Multiple-line
CSS
comment
*/

/*  Styling Body    */
body {
background-color: beige;
padding: 10px;
margin: 0;
font-family: Verdana, Arial, Helvetica, sans-serif; 
color: #000000;

   }

/* 
 This adds styling for IPA characters; in page use 
   <span class="ipa"></span>    
*/

.ipa {font-family: "Lucida Sans Unicode";
      font-weight: bold
      }

/* Set Border for Images in Links */

a img {
border: 2px solid #000000;
       }


/* Set Link Style */

a:link {
color: brown;
   }

a:visited {
  color: rosybrown;
  }

a:hover {
  color: tomato;
     }

a:active {
  color:#000000;
  }

