* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
   
   
     
}


body {
    
    background:#e8ebed;
    font-family: 'Barlow Condensed', sans-serif;
    background-size: 100vw 100vh;
    background-attachment: fixed;
    
 
    
}


/***************************
 EL MENU VA AQUI EL HEADER
****************************/

section{
/*padding-top: 179px;
  margin-bottom: 60px;
  margin-left: 30px;*/
 
}
.contenedor {
    
    width: 100%;
    
    background: #020303;
  
    display: flex;
    justify-content:space-around;
    align-items: center;
    position: fixed;
    z-index: 1000;
       
}
/*
.grid-item a{
    font-size: 2em;
    color: #fff;
    text-shadow: black 0.2em 0.2em 0.2em;
    text-decoration: none;
    background: #FF009A;
    padding: 10px 20px;
    border-radius: 14px;
    
}

.grid-item a:hover{
    font-size: 33px;
    color: #FF009A;
    background: #333;
    transition: all 500ms ease-out;
    
}*/

.logo{  /* abarca la imagen de base de datos y la marca */
    display: flex;
    align-items: center;
}

header .base{
  
  height: 50px;
  width: 50px;
    
}

header .brand{
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 10px;
  
  
}

header .brand:hover{
  color: #f88ede;
  font-size:1.6em;  
  transition: all 500ms ease-out;
}



.menu{
    margin-top: 30px;
    height: 56px;
    
    
}

.menu a { 
    
    color: white;
    text-decoration: none;
    padding: 9px 7px;
    background-color: grey;
    border-radius: 14px;
    transition: all 500ms ease-out;
    margin: 0 3px;
    

}




.menu a:hover {
    
    font-weight: 300;
    font-size: 18px;
    color: #f88ede;
    transition: all 500ms ease-out;
}






@media (max-width:1024px)  {
    
    
   
.contenedor {
      padding-top: 30px;
      flex-wrap: wrap;
      width: 100%;
        
       
        
        
    }
  

}

/***************************
 EL MENU TERMINA  AQUI
****************************/









/*******************************
******EL CUERPO DEL ANALISIS****
********************************/




h1{
  font-size: 1.8em;
  color: #333;
  margin-left: 40px;
}

caption {
    font-size: 1.5em;
    color: blue;
    font-style: italic;
    margin-bottom: 20px;
  
    
}


th {
  font-size: 1.1em;
  
}
td {
    border-bottom: 1px solid #ccc;
    font-style: italic;
    font-size: 1em;
 
}

table tr:nth-child(even) {
   
   
     background: #dee0e3;
    
   
    
}

@media screen and (max-width:800px){
  
  body{
    *background: red;
  } 
  
  section{
  
  margin-left: 15px;
}
h1{
  font-size: 0.9em;
  color: black;
  margin-bottom: 0px;
  margin-left: 0;
  
}

  caption{
    
    font-size: 1em
  }
th {
  font-size: 0.5em;
  
}
td {
    
    font-size: 0.4em;
 
}
  
  
  
  
  
}


/************************************
******FIN DEL CUERPO DEL ANALISIS****
************************************/





/****************************
** AAAA Aqui viene el Footer AAA ***

******************************/


/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
/*:::::Pie de Pagina*/

.box a{
  color: deeppink;
  *background: #333;
}
.pie-pagina{
    width: 100%;
    background-color: #0a141d;
    *background: red;
}
.pie-pagina .grupo-1{
    *background: orange;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
  
}

.pie-pagina .grupo-1 .box{
  align-items: center;
}
.pie-pagina .grupo-1 .box figure{
    margin-top: 50px;
    *margin-left: 90px; /*se mueve la imagen conceadu*/
    *width: 40%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pie-pagina .grupo-1 .box figure a{
  font-size: 24px;
  color: aqua;
}

.pie-pagina .grupo-1 .box figure img{
    width: 150px;
}
.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}
.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}
.pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 9px;
    background-color: #0d2033;
    text-align: center;
    transition: all 300ms ease;
}
.pie-pagina .grupo-1 .red-social a:hover{
  
    color: aqua;
    transition: 0.2s;
    font-size: 20px;
    filter: drop-shadow(0 0 6px white);
  
  
}
.pie-pagina .grupo-2{
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small{
    font-size: 15px;
}
@media screen and (max-width:800px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
        *display:none;
    }
}


/****************************
**AAAAA FINAL Aqui viene el Footer AAAA ***

******************************/

