body{
    margin:0;
    padding:0;
    box-sizing: border-box;
    background-color: white;
    width:100%;
    height:100vh;
    font-family: Arial, Helvetica, sans-serif;
}

section {
    width:100%;
    height: 100%;
}

div {
    display:flex;  justify-content:center; flex-direction: column;
    height: 100%;
    width: 800px;
    margin:0 auto;
    text-align:center;
}

.contenedor-img{
    width: 300px;
    height:auto;
    img {
        width:100%;
        border-radius: 50%;
    }
}

h1,h2 {
    font-size: 1.5em;
    color: #002E5D;
    padding-top:30px;
    text-align:center;
    margin:0;
}
p {
    text-align:center;
}

.izquierda {
    text-align:left;
}


