/*Header*/
body{
    margin: 0;
    padding: 0;
}
.header{
    display: flex;
    justify-content: space-between;
    height: 70px;
    border-bottom: 1px solid #D5D9D9;
    margin-top: 0;
    padding: 0 2rem; /* más espacio horizontal */
}
.header a{
    font-size: 1.1em; /* un poco más grande */
    font-family: 'Quicksand', sans-serif;
    color: #00438D;
    padding: 0 20px; /* más espacio entre links */
    height: inherit; 
    display: flex;
    align-items: center;
}
.logo{
    display: flex;
    margin-block-start: 3px;
    margin-block-end: 3px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
.logo img{
    height: 60px; /* un poco más grande */
    margin: 0px 0px 0px 5px ;
    display: flex;
    padding: 0;
    border: 0;
}
.header ol{
    list-style: none; 
    display: flex; /* Sirve para poner la lista horizontal */
    height: inherit;
}
.header ol li{
    height: inherit;
    margin-left: 2rem; /* espacio entre items */
}
.link:hover {
    color: white;
    background-color: #00438D;
    border: 0.5px solid #D5D9D9;
}
ol{
    margin: 0;
    padding: 0;
}
/*menu*/
.menu{
    height: inherit;
}
.menu li{
    display: inline; /* para poner la lista en horizontal */
}
/*Footer*/
.footer{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-top: 1px solid #D5D9D9;
  margin-top: 0;
  padding: 1.5em 2rem; /* más espacio */
}
a:link{
    text-decoration: none;
}
.social{
  width: 32px;
  height: 32px;
  display: inline-block;
}
.footer-fb{
    background-image: url('../images/fb.ico');
}
.footer-twitter{
    background-image: url('../images/twitter.ico');
}
.footer-instagram{
    background-image: url('../images/instagram.ico');
}
.footer-linkedin{
    background-image: url('../images/linkedin.ico');
}
/*End Footer*/
form{
    text-align: center;
}
.tablita{
    display: inline-block;    
}
/*Tabla Estilos*/
.tabla{
    border-collapse: collapse; /* Esta propiedad hace que parezca mas una tabla */
    font-family: 'Quicksand', sans-serif;
}
table tr th{
    border: 1px solid #D5D9D9;
    width: 140px; /* más ancho */
    height: 35px; /* más alto */
    color: white;
    background-color: #00438D;
}
/* Para el estilo de las nuevas celdas */
td {
    border: 1px solid #D5D9D9;
    width: 140px; /* más ancho */
    height: 35px; /* más alto */
}
.caja{
    display: block;
}
.caja label{
    font-family: 'Quicksand', sans-serif;
}
.caja input{
    width: 10em; /* más ancho */
    height: 2.5em; /* más alto */
    text-align: center;
    font-family: 'Quicksand', sans-serif;  
    font-size: 1.1em;
}
.submit{
    width: 10em; /* más ancho */
    height: 2.5em; /* más alto */
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1em;
    color: white;
    background-color: #00438D;
    border: 2px solid white;
}
