/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: azure;
  color: black;
  font-family: copperplate, "brush script mt", cursive, "times new roman", serif
}
.lol {
  color: black;
  -webkit-text-stroke: 1px red;
  font-weight: bold
}
p em {
  color: cadetblue;
  -webkit-text-stroke: 1px coral;
  font-weight: bold;
}
a:unvisited {
  color: rosybrown;
  -webkit-text-stroke: 1px darkslategrey;
  font-weight: bold
}
a:visited {
  color: darkgoldenrod;
  -webkit-text-stroke: 1px dimgrey;
  font-weight: bold
}
a:hover {
  color: darkgoldenrod;
  -webkit-text-stroke: 1px sienna;
  font-weight: bold;
  text-decoration: none
}
.fancy {
  color: #daa520;
  -webkit-text-stroke: 1px silver;
  font-family: "times new roman", serif;
  font-weight: bold;
  display: inline-block;               
  text-shadow: 
     1px 1px 0px #b8860b,            
     2px 2px 1px rgba(0,0,0,0.2)
}
