I am trying to display this logo in the header in a presentable fashion. I would like it displayed vertically central in the header but with a reasonable gap to the left of the text. The image is attached. Any help would be appreciated!
header{
width:100%;
height:80px;
background-color:#76323f;
font-size:40px;
color:whitesmoke;
line-height:80px;
overflow: hidden;
white-space: nowrap;
}
.icon{
display:inline-block;
float:inherit;
width:70px;
height:80%;
margin-left:auto;
margin-right:auto;
margin-top:auto;
margin-bottom:auto;
}
<header>
Melbourne Public Library Catalogue Site
<img id="icon" src="Images/Icon.png" class="icon"/>
</header>