/*
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 { font-family: serif ;
	background-color: grey;
	font-weight:normal ;
	font-style:oblique ;
	font-size: 12 px;
	text-transform: lowercase;
	letter-spacing: 0,01em;
	word-spacing: 1em;
	line-height: 2,2;
	text-align:left ;
	text-indent: 0,1 ;
}

p.uno { font-family: sans-serif;
	color: red;
	font-weight: bold;
	font-style:oblique ;
	font-size: 12 px;
	letter-spacing:0,1em; 
	word-spacing: 1em;
	line-height: 2,2;
	text-align:right ;
	text-indent: 0,5 ;
}

p.dos { font-family: monospace;
	font-size: 13 px;
	font-weight: bolder;
	font-style:oblique ;
	color: blue;
	letter-spacing: 0,10em;
	word-spacing: 1em;
	line-height: 2,2;
	text-align:center ;
	text-indent: 3;
}

p.tres { font-family: cursive;
	line-through: red;
 	font-size: 22 px;
 	font-weight: lighter;
 	font-style:oblique ;
	color: yellow;
	text-transform:uppercase ;
	underline: double #06c;
	letter-spacing: 0,1em; 
	line-height: 2,2;
	text-align:center ;
	text-indent: 1;
} 

p.cuatro { font-family:fantasy ;
	font-size: 32 px;
	font-style:italic ;
	font-weight: 900;
	text-transform: capitalize;
	color: green;
	letter-spacing: 0,1em;
	word-spacing: 1em;
	line-height: 2,2;
	text-align:justify ;
	text-indent: 4;
}

