/* 1. Cambiar el color de los titulos y de los parrafos*/

h1{	color: lightpink; }
h2{	color: red;  }
ol{	color: darkblue; }

/* 2.Tamaño de la fuente*/

h1{	font-size: 32px; }
h2{	font-size: 24px; }
p{	font-size: 16px; }
h3{	font-size: 18px; }

/* 3.Familia tipografica*/
	
body{	font-family: 'Arial', sans-serif; }
h1{	font-family: 'Georgia', serif;    }
h2{	font-family: 'Georgia', serif;    }

/*4.Pesos del texto*/

h1{	font-weight: bold;    }
h2{	font-weight: 600; }

/*5.Alineación del texto*/

p{	text-align: justify;  }
h1{	text-align: center;  }


/*6.Decoración del texto*/

h1{	text-decoration: underline; }
h2{	text-decoration: overline;  }

/*7.Espacio entre líneas*/

p{	line-height: 1.5; }
ul{	line-height: 1.2; }	
ol{	line-height: 1.2; }

body{ background-color:rgb(224,255,255);}


img:nth-of-type(2){
			
			border-radius: 60px;
			border:6px dashed rgb(248,243,43);
			max-wedth:200px;
			height:auto;
}


img:nth-of-type(2) { 	display: block;
			margin: 20px auto; }
