How can I center the text in the div vertically and how can I center the div across the width of the screen by placing it at the top?
https://jsfiddle.net/gL320uLr/
<div id='custom'>
textfsdfsdfsdfsdfsd
</div>
#custom{
width: 50%;
background: #FF0000;
z-index: 99999;
transform-origin: center center;
position: absolute;
left:50%;
top: 10px;
margin:0 auto;
height: 52px;
border-radius:10px;
}