@charset "utf-8";
/* CSS Document */
* {margin: 0px; padding: 0px;}

/* ESTILOS */
body {background-color: aquamarine}
#fotoportada {display: flex; justify-content: center; padding: 0% 0%;}

/* Cajas footer */

#cajapadre {display: flex;}
#cajapadre > div {height: auto; margin: 5px;}
#caja1 {width: auto;}
#caja2 {width: auto;}
#caja3 {width: auto;}

/* Estilo de Redes Sociales */
		
		.rede{
			width: 150px;
			height: 150px;
			float: left;
			margin-left: 20px;
			transition: all 0.4s ease-out;
			border-radius: 50%;}
		
		.rede:hover{
			cursor: pointer;
			transform: translateY(-20px);
			box-shadow: 4px 30px 16px 0px rgba(50,50,50,0.45);}
		
		.rede#facebook{background-color: #2372a3;}
		
		.rede#instagram{background-color: #3f729b;}
		
		.rede#youtube{background-color: #b00000;}
		
		.icon{
			margin: auto;
			padding: 35px;
			width: 80px}
		
	
