centrar

by jpeter06

HTML

<div>
TITULO
</div>

CSS

html,  body{
  padding:0px;
  margin:0px;
  width:100%;
  height:100%;
  overflow:hidden;
}

body{
  display:flex;
  flex-direction:column;
  align-items: center;
  align-content: center;
  justify-content:center;
}