@charset "utf-8";

/* Reglas generlaes */

body { 
    background-color: #E6E6FA;
    text-align: center;
    font-family: "roboto", sans-serif;
}


ul { 
    list-style: none;
        margin: 0;
        padding: 0;
}

a { 
    text-decoration: none;
    color: #800080; 
}

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

figure {
    margin: 0;
    padding: 0;
    max-width: 20em
        
    
}

/* Mobile first */

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

header nav ul {
    display: flex; 
}



header nav ul li {
    width: 8em;
    height: 4em;
    margin-left: 4em;

/* flex */
    display: flex;
    
}

header nav ul li a {
    color: #FFF0F5;
    font-size: 0.9em;
    background-color: #800080;
    display: block;
    text-align: center;
    margin: 1em;
    width: 100%;
    height 100%;
    font-weight: bolder;
    -webkit-border-radius: 10px;
    border-radius: 0px;
    
    /* flex */ 
    display: flex;
    justify-content: center;
    align-items: center;
    
}
header nav ul li a:hover{
    background-color: #916da3
}

h3 {
    background-color: #DB7093;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #FFF0F5;
    margin: 2em;
    padding: 1em;
    font-size: 18px;
}

h1 { 
    line-height: 3em;
    background-color: #DB7093;
    padding: 0,5em;
    -webkit-border-radius: 10px;
    border-radius: 20px;
    color: #FFF0F5;
    font-size: 24px;
}

footer {
    background-color: #FFF0F5;
    text-align: center;
     margin: 2em;
    padding: 1em;
}

body{
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

html{
    height: -webkit-fill-available;
}

main{
    flex-grow: 1;
    display: flex; flex-direction: column;
    justify-content: center;
    align-content: center;
}

main img{
    margin: auto;
    justify-content: center;
    align-content: center;
}
.bocetoindividual img { 
    width: 100%;
    height: auto;
    max-width: 60em
}
.webapp img{ 
     width: 100%;
    height: auto;
    max-width: 50em
}
.mapa img { 
     width: 100%;
    height: auto;
    max-width: 50em
}
/* Escritorio */