/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: LightSlateGray;
  color: DarkBlue;
  font-family: 'Modern Antiqua', 'Voces';
  padding: 5px;
  margin-right: 120px;
  margin-left: 120px;
}

h2{
	color: white; 
	text-align: center;
}

.texto-naranja{
	color: orange;
}

.texto-blanco{
	font-size: small; 
	color: White;
}

.tipografia-voces{
	font-family: 'Voces'; 
	font-size: small;
}

.izqda {
float: left;
padding: 10px;
margin-right: 5px;
margin-left: 5px;
margin-bottom: 5px;
}

iframe {
	display: block;
	margin: 0 auto; 
}

.normal{
padding: 25px;
margin-right: 5px;
margin-bottom: 5px;
clear: both;
}

.fondo {
  background: linear-gradient(to top, rgba(192,192,192,0.3) 0%, rgba(0,255,0,0.3) 100%);
}

.caja {
	width:80%;
	margin-left:auto;
	margin-right:auto;
}
.caja header {
	background-color: LightGray;
	text-align:center;
	margin-bottom:0.2em;
}
h1 {
	margin:0;
}
nav ul {
	list-style-type:none;
	margin:0;
	padding:0;
	margin-bottom:0.2em;
	display:flex;
	flex-direction: row;
}
nav li { 
	flex-grow: 1; 
}
nav a {
	display:block;
	padding:1em;
	background: linear-gradient(to top, Peru 0%, LightGray 100%);
	text-align:center;
	margin-right:0.2em;
	text-decoration:none;
	color:DarkBlue;
	border-radius: 24px 24px 0 0;
}
nav a:hover {
	background: Peru; 
	color: White;
}
.contenido {
	margin-bottom:0.2em;
	display:flex;
	flex-direction: row;
}
article {
	background-color:LightGray;
	flex-basis: 70%
}
aside {
	background-color:LightGray;
	flex-basis: 30%;
	margin-left:0.2em;
}
footer {
	color: DarkBlue;
	background-color: LightGray;
	font-size: small;
	border-radius: 10px 10px 10px 10px;
}