I am trying to center the text horizontally in the middle of the orange div container. Here is the styling and the actual code.
.header{
background: #ff6400;
height:40px;
box-sizing: border-box;
margin: 0 auto;
}
.phone{
color: white;
font-size: 20px;
padding: 9px 0 0 125px;
display: inline-block;
}
.adres{
display: inline-block;
color: white;
font-size: 20px;
width: 50%;
margin: 0 auto;
}
<div class="header">
<div class="phone">☎ 052 824 134</div>
<div class="adres">✯ бул. Княз Борис I, No 115 - Дворец на Културата и Спорта</div>
</div>