

*{
    margin: 0;
padding: 0;
box-sizing: border-box;

}

/*padrão cores  azul   background-color: #1565C0;
cinza rodape 	#2F4F4F */

html, body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}




header{
    display: flex;
    width: 100%;
    height: 90px;
    background-color: #1565C0;
    justify-content: center;  
    align-items: center;
  
}

h1{
    color: white;
}

#politica-privacidade{
    width: 70%;
    margin: auto;
    margin-top: 100px;
}


footer{

    display: flex;
    width: 100%;
    height: 90px;
    background-color: 	#585858;
    justify-content: center;  
    align-items: center;
    margin-top: 100PX;
    color: white;

}

a{
  color: white;
  padding: 5px;
  text-decoration: none;
}


/* Estilos para dispositivos de tela pequena */

@media screen and (max-width: 700px) {
    /* Redefina estilos ou adicione estilos específicos para dispositivos de tela pequena */
    
    #politica-privacidade{
        width: 95%;
        font-size: 12px;
     
    }
  }

  