/*---------------- body --------------*/
body {
    background-color: #9bd0ff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 100vw;
    font-family: 'Roboto', sans-serif;
}
/*--------------- header ------------*/
header {
    background-color: white;
    padding: 10px;
}
header .contenedor {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
header ul {
    list-style: none;
    margin: 0;+
    padding: 0;
}
a {
    text-decoration: none;
    color: black;
    font-family: sans-serif;
}
nav ul {
    display: flex;
    width: 100%;
}
nav ul li {
    flex-basis: 25%;
}
nav ul li a {
    display: block;
    text-align: center;
    padding: .25em 5em;
}
nav ul li a:hover{
  color: #159cff;
}
/*--------------- main -------------*/
main {
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-flow: 1;
}
h1 {
    display:flex;
    justify-content: center;
    background-color: aliceblue;
    border-radius: 15px;
    padding: 10px;
}
.integrantes img{
    margin: 0;
    display: flex;
    border-radius: 50%;
    box-shadow: 2px 2px 20px #666;
}
.integrantes ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: none;
}
.integrantes h2{
    border-bottom: none;
    display: flex;
    justify-content: center;
    font-size: 1em;
}
.integrantes h2:hover{
    color: blueviolet;
}
.comitente {
    background-color: white;
    border: solid 1px lightblue;
    border-radius: 1rem;
    box-shadow: 0 2px 2px 2px rgba(0,0,0,0.125);
    margin-top: 1em;
    margin-bottom: 1em;
    
}
.pertenencia {
    background-color: white;
    border: solid 1px lightblue;
    border-radius: 1rem;
    box-shadow: 0 2px 2px 2px rgba(0,0,0,0.125);
    margin-top: 1em;
    margin-bottom: 1em;
}
.pertenencia img{
    height: 60px;
    margin: auto
}

main section img {
    margin: 1em;
}
main section h2{
    border-bottom: solid .25em rgba(62, 114, 255, 0.35);
    margin: 1em;
}
main div article {
    border: solid 1px rgba(0, 0, 0, 0.25);
    padding: 1em;
    border-radius: 1em;
    margin:1em;
}
/*-------------- footer ----------*/
footer {
    background-color: black;
    border-top: 7px solid;
    border-top-color: blueviolet;
}
article p {
    color:white;
    width: 90%;
    display: block;
    margin:auto;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1em;
}
/*--------------------- plan -------------*/
.plan{
    display: flex;
    flex-direction: column;
    padding: 2em;
    background-color: white;
    border-radius: 1em;
    margin-bottom: 2em;
    margin-top: 2em;
}
.plan h2 {
    border-bottom: solid .25em rgba(62, 114, 255, 0.93);
}
.plan p {
    margin: 0;
}


/*------------------------ webapps --------------*/
.webapp3{
    background color: white;
    margin: 2em;
    padding: 2em;
    border-radius: 1em;
    
}

/*------------- generales ---------*/
* { box-sizing: border-box;}
