html{
    width: 90%;
    height: 1000px;

    margin: auto;
}

body{
    width: 100%;
    height: 100%;
    margin: 0;
}

#fundo{
    background-color: coral;
    width: 100%;
    height: 100%;

}
header{
    width: 100%;
    height: 20%;
    background-color: greenyellow;
}
footer{
    width: 100%;
    height: 20%;
    background-color: black;
}
#sections{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 10px 0px;
}

section{
    width: 100%;
    height: 235px;
    background-color: aqua;
}

#section1{
    display: flex;
    flex-direction: row;
    padding: 0px 0px 20px 0px;

}

#section1 div{

    background-color: darksalmon;
    width: 40%;
    height: 80%;
    margin: auto;
    padding: 10px;
}

#section2{
    display: flex;
    flex-direction: row;
    padding: 5px 0px;

}

#section2 div{
    margin: auto;
    width: 20%;
    height: 90%;
    background-color: white;
    border-radius: 10px;
    text-align: center;
}

#section3 p{
    padding: 16px;
}

#section4{
    display: flex;
    flex-direction: row;    
}

#section4 div{
 
    width: 40%;
    height: 80%;
    margin: auto;
    padding: 10px;

}