JSFiddle - React, Tailwind, and code Playground

HTML

<div class="logo_home">
    <a href="#"><img src="http://maximzaytsev.com/wp-content/themes/zaytsev/images/logo.png" alt=""></a>
</div>

CSS

* {
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 99.9%;
    height: 2000px;
}

body {
    background: #333;
}

.logo_home {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.logo_home img{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: auto;
}