@charset "utf-8"

/*REGLAS GENERALES*/

* {
    box-sizing: border-box;
    color: black;
    margin: 0;
    padding: 0;

}

body {
    font-family: sans-serif;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.mayuscula {
    text-transform: uppercase;
}


ul {
    list-style: none
}

/*HEADER*/

header{
    
}

.menu {
    margin: 0;
    padding: 1em;
    list-style: none;
    background-color: #601C84;
}

header nav .menu li {
    padding: 5px 15px
}

header nav .menu li a {
    text-align: center;
    padding: 5px;
    margin: 15px 3px 15px;
    color: white;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}

header nav .menu li a:hover {
    background: white;
    color: #601C84;
    border-radius: .8rem;
}


.integrantes {
    margin-top: 1.5em
}

header nav .integrantes li {
    padding: 13px 5px 13px 5px;
}


header nav .integrantes li a {
    text-decoration: none;
    padding: 5px 7px 5px 7px;
    border: .1rem solid;
    border-color: #601C84;
    border-radius: .8rem;
    border-width: .1rem;
    color: #601C84;
}

header nav .integrantes li a:hover {
    background: #601C84;
    color: white;
}

/*MAIN*/

main {
    padding: 1em;
    margin: auto
    
}

ul {
    list-style: none;
    padding-left: 0;
    margin: .5rem 0 .5rem
}

p {
    margin: .5rem 0 .5rem
}

h1 {
    font-size: 28px;
    margin: 2rem 0 1rem;
    border-bottom: .2em solid #601C84;
    display: inline-block;
    color: #601C84;
}


h2 {
    font-size: 26px;
    margin: .8rem 0 .2rem
}

h3 {
    font-size: 23px;
    margin: .8rem 0 .2rem
}



.violeta {
    color: #601C84;
}

.botones ul {
    display: inline-block;
    margin-top: 2em;
}


.botones ul li {
    margin: 1.5em;

}

.botones ul li a {
    text-decoration: none;
    color: #601C84;
    border: 0.1em solid #601C84;
    border-radius: .8rem;
    padding: .5em;
}

.botones ul li a:hover {
    background: #601C84;
    color: white;
}


/*FOOTER*/

footer {
    margin-top: 2em;

}

.datosfadu {
    display: inline-block;
    width: 90%;
    border-top: 0.2em solid #601C84;
    padding: 1em 0 .2em;
    margin: auto;
    font-size: 22px;

}

.datosacademicos p {
    text-align: center;
    padding: .7em 0;
}

.logos-academicos {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    align-items: center
}


#logofadu {
    width: 200px;
    margin: 20px;
    background-color: white;
    border-radius: .3em;
}

#logodc {
    width: 100px;
    margin: 20px;
    background-color: white;
    border-radius: .3em;
}

#logoacumar {
    width: 150px;
    margin: 20px;
    background-color: white;
    border-radius: .3em;
}

.pie {
    background-color: #601C84;
    color: white;
    padding: .8rem;
    font-weight: 400;
    font-size: 14px;
}

@media screen and (min-width:768px) {
    .menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .integrantes {
        display: flex;
        flex-direction: row;
        margin: 20px 0;
        align-content: center;
        justify-content: center;
    }
    
    main {
        max-width: 700px;
    }


    .datosfadu {
        display: inline-block;
        width: 50%;
    }

    .botones ul {
        display: flex;
        flex-direction: row;
        justify-content: center;

    }

    .logos-academicos {
        display: flex;
        flex-direction: row;
        text-align: center;
        justify-content: center;
    }

}

@media screen and (min-width:1200px) {

    main {
        max-width: 800px;
    }


    .datosacademicos {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
