/*
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: grey;
	line-height: 90%;
	

}

p.uno {
	color: red;
	color: silver;
	font-weight: 300;
	background-color: grey;
}

p.dos {
	color: blue;
	font-family: Courier;
	word-spacing: 15px;
	text-indent: 10%;
	background-color: green;
	
}

p.tres {
	color: yellow;
	background-color: red;
	font-size: small;
	text-decoration: overline;
	letter-spacing:normal;
	background-color: gray;
}

p.cuatro {
	color: green;
	text-align: center;
	font-style: italic;
	text-transform: uppercase;
	background-color: blanchedalmond;;
}

