* {
    font-family: Arial, Helvetica, sans-serif;   
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

}

body{
    background-color: #ffffff;
}
/*  ENCABEZADO */
.header{
    position: sticky;    
    top: 0;
    left: 0;
    z-index: 100;
  /*  border: red solid 1px;*/        
    height: 50px;
    width: 100%;
    background-color: #315c19; 
}  
/*  LADO IZQUIERDO DEL ENCABEZADO */
.headerIzq{    
    display: flex;
    align-items: center; /* Alinea verticalmente el contenido */
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;    
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px; 
    color: white;
}
/*  LADO DERECHO DEL ENCABEZADO */
.headerDer{
    position: absolute;
    right: 10px;   
    top: 0;
    /*width: 30%;*/
    display: flex;
    align-items: center; /* Alinea verticalmente el contenido */
     justify-content: center; /* Opcional: para centrar horizontalmente */
    height: 100%;
  
}

.container {
    max-width: 100%;        
}
/* LAS TRES SECCIONES*/ 
/*SECTION LOGO */
#sectionLogo{
    margin: 5px;
    width: 100%; 
    /* border: black solid 1px;*/ 
    display: inline-block;       
    text-align: center;
    
}

/*SECTION CONTENIDO */
#sectionContenido{   

    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;

}
#sectionContenido p{
padding: 10px;
margin: 5px;
}

#sectionContenido .cuadro{
    border: #9cb899 solid 1px; 
    margin: 10px;
    padding: 5px;
    border-radius: 15px;      
    width:  100%;
    background-color:rgb(199, 230, 196) ;
    
}


.letraGrande{
    font-family: "Michroma", sans-serif;
    line-height: normal;
    font-weight:bold;   
    color: rgb(32, 36, 80);
    text-transform: none;
    font-size: 1.8rem;
    font-style: normal;
}


/*SECTION IMAGEN */
#sectionImagen{
    width: 100%;
    text-align: center;
}

#sectionImagen .imagen-redonda{
    border-radius: 3%;  /* Hace que sea un círculo */
     object-fit: cover;   /* Recorta la imagen para que llene el círculo sin deformarse */
}

/*FOOTER*/
.footer{    
    height: 37px;
    position: fixed;
    width: 100%;
    bottom: 0px;
    text-align: center;    
    background: #315c19;
    color: white; 
    text-align: center;         
    font-size: 12px;  
    padding: 5px;  
}

.botonIngreso {
    margin-top: 3px;
    padding: 9px 20px;
    font-size: 12px;
    background-color: #093803;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;  
     text-decoration: none;
  
}

.botonIngreso:hover {
    background-color: #2f4430;
   /* transform: scale(1.05);
    transition: all 0.2s;*/
}