/*
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: white;
	font-family: serif;

}

p.uno {
	color: lightblue;
font-size: smaller;
font-weight: bolder;
text-indent: 30%
}

p.dos {
	color: orangered;
font-style: oblique;
text-decoration: line-through;
word-spacing: inherit;


}

p.tres {
	color: lightgreen;
text-transform: capitalize;
line-height: 130%
}

p.cuatro {
	color: lightpink;
text-align: center;

}

