JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<body>
<img id="logo"></div>
</body>
</html>

CSS

img#logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    border:1px solid black;
}