Is there a way to perfectly center this container both vertically and horizontally? I've attempted the method below without success. Unsure of what is missing:
HTML:
<div class="box">
<p>This is a sentence.</p>
</div>
CSS:
.box {
background-color: #444444;
color: #888888;
margin: auto;
position: absolute;
width: 1000px;
height: 20px;
}