/*
Fer una web amb 5 paràgrafs,
cadascun d'una classe, i aplicar
diferents propietats CSS de les que hem vist.
Surt al moodle les que hem vist.
*/

p {
	background-color: black;
}

p.uno {
	color: red;
	text-align: center;
	font-family: Arial;
	
}

p.dos {
	color: purple;
	word-spacing: 0.5em;
	font-size: larger;
	font-style: Italic;
}

p.tres {
	color: yellow;
	text-decoration: overline dotted;
	text-transform: uppercase;
	font-family: fantasy;
	letter-spacing: 5px;
}

p.cuatro {
	color: green;
	line-height: 1.5;
	text-indent: 3em;
	font-family: serif;
	font-weight: bold;
}

