* {
    margin: 0%; 
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
header {
    background-color: #8CDDB6;
    width: 100%;
    position: relative;
    text-align: center; 
}
#titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.6%;
}            
#foto {
    height: 34rem;
    width: 30rem;
    margin-top: 2%;
    margin-left: 2%;
    border-radius: 10%;
    margin-bottom: 3%;
}
#main {
    display: flex;
    flex-direction: row;
 }
footer {
    background-color: #8CDDB6;
    width: 100%;
    display: flex;
    justify-content: center;
}
#texto {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-left: 2%;
}
#ind {
    display: flex;
    flex-direction: row;    
} 
@media (max-width: 800px) {
    #titulo {
        margin-left: 2%; 
    }
    #foto{
        margin-bottom:1%;
    }
    #main {
        flex-direction: column; 
        align-items: center;
    }
    #texto{
        padding-left: 12%;
        padding-right:10%;
    }
    #logo {
        padding-left: 0; 
    }
}