* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans:700');


section#termos_de_uso {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -50px;
    padding: 10px;
    
}
section#termos_de_uso h2 {
    text-align: center;
    font-size: 1.5em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    width: 100%;
}
section#termos_de_uso p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.0em;
    text-align: left;
    text-indent: 50px;
    
}

@media screen and (min-width: 768px){
    section#termos_de_uso {
        max-width: 1400px;
        height: auto;
        margin: 0 auto;
    }
    
    
}