@charset "utf-8";
<style>
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
</style>

/* ----------- reglas generales y módulos ----------- */

* {
    box-sizing: border-box;
}

body {
    background-color:rgb(239,128,125)
    margin: 0;
    font-family: "Montserrat", sans-serif;
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between
}

header,
footer {
    background-color: rgb(239, 128, 125);
    margin:1em;
}

footer p {
    color: white;
}


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

.contenedor,
main > section {
    max-width: 60rem;
    margin: 0 auto;
    padding: 1rem;
    background-color: rgb(239, 128, 125);

}



/* ----------- header ----------- */

header > div.contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    width: 100%;
    margin-left: 1em;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: .25em;
    background-color: rgba(0, 0, 0, 0.2);
    
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

nav ul li {
    flex-basis: 24.5%;
}

nav ul li a {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: .125em .5em;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: white;
    color: black;
}

/* ----------- main ----------- */

main {
    flex-grow: 1;
}

main > section {
    background-color: white;
    border: solid 1px
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.125);
    margin-top: 1em;
    margin-bottom: 1em;
    width: calc( 100% - 2rem );
}

main > section > h1,
main > section > h2 {
    border-bottom: solid .25em
    margin-top: 0;
    padding-bottom: .25em;
}


/* ----------- main/sabrina ----------- */

#sabrina {
    display: flex;
    background-color:white;
    border: none;
    box-shadow: none;
    text-align: center;
    align-items: center;
}

/* ----------- main/materias ----------- */

#materias {
    display:block;
    background-color: rgb(239, 128, 125);
    color:white;
    text-align: center;
}

/* ----------- main/comitente ----------- */
  
#comitente {
    color:white;
    background-color: rgb(239, 128, 125);
    text-align: center;
    
}

/* ----------- main/webapp ----------- */
  
#webapp {
    color: white;
    background-color: rgb(239, 128, 125);
    text-align: center;
}

/* ----------- main/equipo ----------- */
  
#equipo {
    color: white;
    background-color: rgb(239, 128, 125);
    text-align: center;

}

#equipo ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#equipo ul li {
    margin: 1em;
}

#equipo ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

#equipo ul li a:hover {
    color: darkslateblue;
    text-decoration: underline;
}


/* ----------- main/pertenencia ----------- */

#uba  {
    list-style: none;
    padding: 1em;
    margin-bottom: 0;
    background-color: rgb(239, 128, 125);
    color:white;
}


#fadu {
    list-style: none;
    padding: 1em;
    margin-bottom: 0;
    background-color: rgb(239, 128, 125);
    color:white;
}

#dgpc  {
    list-style: none;
    padding: 1em;
    margin-bottom: 0;
    background-color: rgb(239, 128, 125);
    color:white;
}





