/* selector(tagname) {
 property: value;
 property: value;
}

to target an ID
#id-name {
	property: value;
}

to target a Class
.class-name {
	property: value;
}
*/
#firstH1 {
	color:blue;
  text-decoration:underline green dashed 8px;
  font-size: 2em;
}
.andAnother {
	font-family: "Josefin Sans", serif;
  font-size: 3em;
  font-style: italic;
  font-weight: 700;
  text-decoration: overline green wavy 8px;
  color: rgba(119,49,124,0.2);
  background-color: yellow;
}
a {
	font-size: 2em;
  text-decoration: line-through green solid 8px;
  background-color: green;
}
div {
	background-color: red;
  border: dashed black 2px;
  padding: 2em 1em 2em 3em;
  margin: 2em;
}