/*Set body background color, font color and font size*/
body{	background-color: orange;
	color: white;
	font-size: 12;
}

/*Set paragraph font size*/
p{ 	font-size: 40pt;

}

/*Set clase font.2 font size, font color, background and position*/
font.2{	font-size: 24pt;
	color: white;
	background-color: blue;
	position: absolute;
	top: 100px;
	left: 220px;
	z-index: 1;
}

/*Set clase font.3 font size, font color, background and position*/
font.3{	font-size: 10pt;
	color: white;
	background-color: black;
	position: absolute;
	top: 300px;
	left: 200px;
	z-index: 1;
}

/*Set clase font.4 font size, font color, background and position*/
font.4{	font-size: 20pt;
	color: red;
	background-color: green;
	position: absolute;
	top: 350px;
	left: 300px;
	z-index: 1;
}

font.5{	font-size: 10pt;
	color: black;
	position: absolute;
	top: 470px;
	left: 0px;
	z-index: 1;
}


/*Set image position*/
img{	position: absolute; 
	top: 80px; 
	left: 200px;
	z-index: 0;
}

/*Set clase img.2 position*/
img.2{	position: absolute; 
	top: 360px;
	left: 190px;
	z-index: 0;
}

