/*
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.eluno {
	background-color: grey;
	color: black;
	font-family: Courier new
	font-size: 12px; 
}

p.uno {
	color: red;
	background-color: white;
	text-align: center;
	letter-spacing: 2px;
}

p.dos {
	color: blue;
	background-color: red;
	word-spacing: 4px;
	font-size: 25px;
	font-family: Oswald;
	text-decoration: overline;
}

p.tres {
	color: #46ff33;
	background-color: black;
	font-family: Arial;
	font-weight: 400;
	font-style: oblique;
	text-decoration: overline dotted;
}

p.cuatro {
	color: green;
	background-color: orange;
	text-decoration: underline;
	font-family: Times New Roman;
	font-style: italic;
	letter-spacing: 3px;
}

