div.uno {
	background-color: red;
    background-image:url(Fotos/Bart.png);
    background-repeat: no-repeat;
    padding-bottom: 15%;
    margin-bottom: 20%;
    border-bottom-style: solid;
    
    
}

div.dos {
	background-color: blue;
	padding-left: 20%;
	border-bottom: 50px;
	border-color: red;
	border-width: 20px;
	
}

div.tres {
	background-color: fuchsia;
	padding-right: 15%;
	width: 15px;
	border-color: yellow;
}

div.quatre {
	background-color: pink;
	padding-left: 15%;
	margin-left: 18px;
    
}

/* S'aplica a tots els enllaços */
a {
  text-decoration: none;
  padding: 15px;
}

/* Enllaç no visitat mai */
a:link {
  color: green;
}

/* Enllaç que ja s'ha visitat */
a:visited {
  color: red;
}

/* Hi fas click però no aixeques el dit del ratolí, és a dir, arrosegues */
a:active {
  color: red;
}

/* Quan hi pases per sobre */
a:hover {
  color: blue;
  background-color: red;
  text-decoration: underline;
  
}

span.resaltat {
  color: red;
  margin-bottom: 30%;
}

div.exemple {
  background-color: green;
}

span.extra{
    color: chartreuse;
    
}

