/*
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.
*/

body  { font-family: Helvetica, Arial, sans-serif;}
p {
	background-color: grey;
	letter-spacing: 5px;
}

p.uno {
	color: red;
	font-style: italic;
	word-spacing: 0.2em;
}

p.dos {
	color: blue;
	font-weight: bold;
	text-decoration: underline  wavy #DDDDDD
}

p.tres {
	color: yellow;
	font-size: 70%;
	line-height: 2.0
	text-indent: 2em;
}

p.cuatro {
	color: green;
	text-transform: lowercase;
	text-align: left;
}

