* { 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }  
/*constantes*/
:Root {
    --color-textos: hsl (0 0% 0%);      /*(negro)*/
    --colore-textos-secundarios: hsl (0 0%  0% / 75);    /*( verde claro ) */
    --colore-textos-secundarios: hsl (0 0%  0% / 75);    /*( gris )*/
    --color-1: hsl( 667 62% 36%); /*violeta*/
    --color-2: hsl( 563 76% 20%); /*azul */
    --color-3: hsl( 123 62% 36%); /*verde*/
    --color-4: rgb(255, 255, 255);
    ---tipo-titulos: sans-serif; 
    --tipo-textos: serif;
    --padding-general: 1rem 2rem 1rem 2rem;
    }

    /*generalidades*/
body {
    Font-family: var(--tipo-textos);
    width: 100%;
    }
main {
    Margin:3%;

    }
    
h1,
h2,
h3,
h4 { 
    font-family :var(---tipo-titulos);
    color: var(--color-textos);
    margin:3%;
    }


a{
    text-decoration: none;
    Color: var(--colores-textos-secundarios);
    }

ul li{
        list-style: none;
    }

header{
        display: flex;
        flex-direction: row;

    }

header,
footer {
    background-color: var(--color-1);
    width: 100%;
    }
    
/*barra de navegación----------------------------------------------------*/
#logo {
    display: flex;
    justify-content: flex-start;
    max-width: 15rem;
    max-height: 6rem;
    background-color: var(--color-4);
    padding: .4rem;
  border-radius: 10%;
    }
    
header .contenedora{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem;
    width: 100%;
    padding: var(--padding-general) ;
    }
nav ul {
    display: flex;
    flex-direction: row;
    }
nav ul li a {
    display: block;
    background-color: var(--color-1);
    text-align: center;
    color: var(--color-4);
    font-weight: 700;
    margin: 0.5rem;
    padding: 0.25rem 1rem;
}

nav ul li a:hover {
    color: var(--color-2);

}

    /*datos del equipo y links rótulos individuales------------------------*/
.sub_titulo {
    padding: var(--padding-general);
    text-align:start;
    background-color: var(--color-1);
    border-radius: 2rem;
}
.equipo ul {
    display: flex;
    flex-direction: row;
}
.equipo ul li {
    padding-left: 3%;
    width: 33%;
}

.equipo img {
    width: 100%;
    height: auto;
    
}

#pau {
    background-color: rgb(186, 245, 255);
    padding: var(--padding-general);
}
#agus {
    background-color: rgb(142, 127, 255);
    padding: var(--padding-general);
}
#lau {
    background-color: rgb(234, 126, 126);
    padding: var(--padding-general);
}


/*datos de académicos*/
.datosAcademicos {
    display: flex;
    flex-direction: row;
}
._datosAcademicos {
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-general);
}
.logo img {
    height: 4rem;
}


/*footer-------------------------------*/


    footer p{
Margin-block-end:0;
padding: var(--padding-general);
}
/*plan html*/
.botones {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 3rem;
}

.boton {
    background-color: var(--color-1);
    color:  var(--color-4);
    padding: var(--padding-general);
    border-radius: 40px;
    border-style: hidden;
    width: fit-content;
    text-align: center;

    justify-content: center;
}

.boton:hover{
    background-color: var(--color-2);
}


@media (max-width: 750px){


  .datosAcademicos{
    display:flex;
    flex-direction: column;}

    
    .equipo ul {
        display: flex;
        flex-direction: column;}

.equipo ul li {
    padding-left: 3%;
    width: 100%;
}

.contenedora div nav ul {
    
    width: 70%;
    display: flex;
    align-items: right;
}



        }