@charset"utf-8";
@import url(https://fonts.gstatic.com/s/indieflower/v16/m8JVjfNVeKWVnh3QMuKkFcZVaUuH.woff2)
 
body{
	border-style:inset;
	border-width: 10px;
	border-color: aqua;
	padding: 25px;
}
header,nav,aside,.contenedor{
	border-style:solid;
	border-width: 7px;
	border-color: black;
	padding: 50px;
	margin: 15px;
}
footer,nav,.contenedor{
	border-style:solid;
	border-width: 7px;
	border-color: black;
	padding: 25px;
	margin: 10px;
}

	main,.contenedor{
	border-style:solid;
	border-width: 7px;
	border-color: black;
	padding: 10px;
	margin: 10px;
	}


.caja{
	border-width: 3px;
	border-color: green;

}

header{

	font-family: 'Indie Flower', cursive;
	background-color: steelblue;
	text-align: center;
	text-decoration-line: underline;
	font-style: oblique;
	font-size: 75px;
	font-weight: 900;	
}

nav{
	
	background-color: lightblue;
	width: 15%;
	font-size: 30px;

}
main{
	
	width: 85%;
	background-color: lightsteelblue;
	font-size: 175%;
}
aside{
	
	width: 60%;
		background-color: skyblue;
		font-size: 150%;

}
footer{
	background-color: steelblue;
	font-size: 150%;
	
}
.contenedor{
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	background-color: lightgray;
}

html{
}

