@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap');

body {
	margin: 0 auto;
	background-color: #020204;
	font-family: "Roboto Condensed";
}

header {
	margin: 0 auto;
	justify-content: center;
	text-align: center;
}

.contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenido {
  display: flex;
  justify-content: center;
  text-align: center;
}

nav {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	width: 100%;
	clear: both;
	background-color: #333;
	font-weight: bold;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

nav li {
  float: left;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav li a:hover {
  background-color: #111;
  border-bottom-style: solid;
	border-color: #A50021;
}

section { 
	color: lightsteelblue;
	margin: 0 auto;	
	justify-content: center;
	width: 80%;
}

.seccion {
	font-size: 14px;
	color: lightsteelblue;
	text-align: justify;
	margin: 1px 10px 1px 0;
	padding: 8px 0 8px 8px;
	border-bottom: 1px dotted #FFFFFF;
	line-height: 130%; 
}

.seccion strong {
	font-size: 14px;
	color:#FFCC00;
}

section h2 {
	text-align:right;
	color:#F2A427;
	padding: 0 14px 0 0;
	border-bottom: medium solid #CCCC99;
	border-top: 1px solid #cccc99;
}

section figure {
  border: 1px #cccccc solid;
  border-radius: 5px;
  padding: 6px;
  margin: 10px 20px 10px 20px;
  width: 200px;
  float: left;
  background-color: lightsteelblue;
  color: black;
  box-shadow: 0 4px 8px 0 #f5fffa, 0 6px 20px 0 #f5fffa;
}

section figcaption {
background-color: lightsteelblue;
  color: black;
  font-style: italic;
  padding: 2px;
  text-align: center;
}

hr {  
      display: block;  
      margin-top: 0.5em;  
      margin-bottom: 0.5em;  
      margin-left: auto;  
      margin-right: auto;  
      border-style: inset;  
      border-width: 1px;  
} 


article {
	display: flex;
	justify-content: center;
	text-align: center;
}

.izq {
	float: left;
	width: 70%;
	margin: 25px 5px 0 25px;
}

.der {
	float: right;
	width: 200px;
	margin: 14px 4px 0 50px; 
	text-align: center;
	background-color: #333339;
}

.der h3 {	
	margin: 0 0 0 0;
	padding: 14px 5px 5px 8px;
	border-bottom: medium solid #CCCCCC;
	font-size: 12px;	
	text-align: right;	
	color: #F2A427;	
	font-weight: bold;
}

@media screen and (max-width: 900px) {
  nav ul {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  nav ul li a {
    float: left;
    padding: 15px;
  }
  
  div.content {margin-left: 0;}
}

@media screen and (max-width: 400px) {
  nav ul li a {
    text-align: center;
    float: none;
}

