/* CSS files add styling rules to your content */

body {
  font-family: helvetica, arial, sans-serif;
  margin: 2em;
  background:pink;
}

p {
  font-weight:normal;
}

/* For this particular paragraph style, make visited links red */

.visitedRed a:visited {
	color: red;
	
}

/* The a:link has to be declared as empty in order for hovering links to work */
/* Without this line the hover green link doesn't work */

.greenHover a:link {
	
}
.greenHover a:hover {
	color: green;
	
}
