JSFiddle - React, Tailwind, and code Playground
HTML
<div class="logo_home">
<a class="logo-link" href="http://maximzaytsev.com" title="Maxim Zaytsev"> </a>
</div>
CSS
* {
margin: 0;
padding: 0;
}
html, body {
min-height: 99.9%;
}
body {
background: #333;
}
.logo_home {
height: 50px;
width: 286px;
position: fixed;
left: 50%;
top: 50%;
}
.logo-link {
display: block;
height: 100%;
width: 100%;
position: relative;
left: -50%;
top: -50%;
background: url(http://maximzaytsev.com/wp-content/themes/zaytsev/images/logo.png) no-repeat;
background-size: 286px 50px;
}