/*
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.uno {
	color: red;
	background-color: lightblue;
	font-family: sans-serif;
	font-size: 17px;
	font-weight: bold;
}

p.dos {
	color: blue;
	background-color: lightgreen;
	font-style: italic;
	text-decoration: underline wavy #f99;
	text-transform: capitalize;
}

p.tres {
	color: yellow;
	background-color: #B22222;
	letter-spacing: 7px;
}

p.cuatro {
	color: green;
	background-color: #FFB6C1;
	font-family: Times;
	word-spacing: 0.9em;
	text-align: right;
}

p.cinco {
	color: #D2691E;
	background-color: #7FFFD4;
	font-family: arial;
	word-spacing: 0.9em;
	line-height: 1.9;
	text-align: right;
	text-indent: 7em;
}