text-align:center; not working. the text "hello" starts on the right side of the page and not the center. i need the text to be placed right exactly on the middle of the page. pls help and thanks.
body {
padding: 0;
margin: 0;
background: #ffd200;
}
h1 {
font-size;
10em;
padding: 0 auto;
margin: 0 auto;
text-align: center;
font-family: 'arial';
position: absolute;
top: 50%;
bottom: 50%;
right: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%)
}
<h1>hello</h1>