/*
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: "Times New Roman", Times, serif;
	background-color: grey;
}

p.uno {
	color: red;
}

h1 {
  text-decoration: line-through;
}


p.dos {
	color: blue;
	 font-style: italic;
}

h2 {
  letter-spacing: 4px;
}

p.tres {
	color: yellow;
	font-style: oblique;
}

h3 {
  text-decoration: underline;
}

p.cuatro {
	color: green;
	font-weight: 900;
	font-style: italic;
	word-spacing: 30px;
}

div.a {
   text-indent: 200px;
   letter-spacing: 20px;
    text-transform: uppercase;
    font-size: large;

}

div.b {
	 text-transform: lowercase;
	 line-height: 400%;
}
  