/*
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: black;
}

p.uno {
	color: red;
}

p.dos {
	color: red;
}

p.tres {
	color: yellow;
}

p.cuatro {
	color: white;
}

body { font-family: Helvetica, Arial, sans-serif; }
blockquote { font-family: Times, "Times New Roman", serif; }

p.uno { 
	font-size: larger; 
}

.dos { font-weight: bold; }

.uno { font-style: italic; }

.tres a:hover { text-decoration: none }

.tres a:hover { text-decoration: underline overline line-through wavy #f99 } 

h1 { text-transform: uppercase; }

p { letter-spacing: 2px; }

p { word-spacing: 0.9em; }

p { line-height: 0.9 }

p { text-align: center; }


p { text-indent: 5em; }


