/* 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." */

HTML {
  background-color: #EDE8E0;
  font-family: Times New Roman;
  flex-direction: row;
}

.cuerpo-objeto {
  font-family: Times New Roman;
  padding: 20px;
  background: #EDE8E0;
}

/* Título */
.encabezado {
  margin: 0px;
  padding: 0px;
  font-size: 40px;
  text-align: center;
  background-color: #FCEF91;
}

/*barra de navegación*/

#barra ul {
  text-align: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #FCEF91;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  font-size: 2em;
  justify-content: center;
  border-radius: 20px;
}

#barra li a {
  display: block;
  color: #060202;
  padding: 14px 16px;
  text-decoration: none;
  border-right: 2px solid #eee;
}
  
#inicio-barra {
   border-left: 2px solid #eee;
}

#barra li a:hover {
  background-color: #F2F0EF;
}

/*cuerpo columnas*/
.contenedor {
    display: flex;
    flex-flow: row wrap;
    align-items: baseline;
}

.columna-central {
  order: 2;
  display: flex;
  width: 60%;
  flex-shrink: 0;
  align-content: stretch;
  justify-content: center;
}

.columna-derecha {
  order: 3;
  display: flex;
  width: 20%;
  justify-content: flex-end;
}

.columna-izquierda {
  order: 1;
  display: flex;
  width: 20%;
  justify-content: flex-start;
}

/* pie de página */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}

/*Título*/

#Título h1{
  justify-content: center;
  font-size: 100%;
  text-align: center;
}

/*Cuerpo*/

article {
  margin: 0 auto;
  padding: 100px 50px;
}

#header {
  float: left;
}

#container {
  margin: 0 auto;
  border: 1px #060202;
  border-radius: 5px;
  
}

section .inicio-cuerpo {
  padding: 5em 3em;
  margin: 1em;
  border: 2px #060202;
  border-radius: 5px;

}

/*Imágenes de cuerpo*/

#bitransantifa {
  display: flex;
  background-size: contain;
  align-content: flex-start;
  height: 250px;
  width: auto;
  padding: 2em;
  float: left;
}

#agavetoto {
display: flex;
background-size: contain;
justify-content: flex-end;
height: 250px;
width: auto;
padding: 2em;
float: right;
}
