@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
/* reglas generales */

body {
    background-color: rgba(88, 120, 141, 0.28);
    font-family: sans-serif;
    margin: 0;
    padding: 2em;
    border: 0;
    box-sizing: border-box;
}

.logo{
    display: flex;
    justify-content: center;
}

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

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

img{
    width: 50%;
    height: auto;
}

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

/*primera parte para el celular
mobile first

*/

 #isologo , header h1 {
    display: inline-block;
    max-width: 12em;
    vertical-align: middle;    
}

header nav ul li a{
    color: #dcedfc;
    font-size: 01.2em;
    background-color: #8d6ef5;
    display: block;
    text-align: center;
    margin: 1em 5em 2em;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

figure img{
    width: 80%;
}

ol li{
    list-style: disc;
}

h5{ display: flex;
    justify-content: center;
}

footer {
    background-color: rgba(141, 110, 245, 0.73);
    margin: 2em 0 0 0;
}


/*Segunda parte
para escritorio

*/
