header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.infância{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.imagens{
    width: 30vw;
    height: auto;
}

body{
    background-color: rgb(167, 220, 174);
}


@media only screen and (max-width: 700px) {
    .infância {
        flex-direction: column;
        
        margin-bottom: 15px;
        
        /* height: auto; */
        
    }

    .imagens{
        width: auto;
    }


}