JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
    <div class="left"></div>
    <div class="center"><a href="/">Image Logo JPG here</a>
    </div>
    <div class="right"></div>
</div>

CSS

body {
    width:100%;
}
.wrapper {
    display:table;
    width:100%;
}
.left {
    display:table-cell;
    width:33px;
    background-color:blue;
}
.right {
    display:table-cell;
    width:33%;
    background-color:black;
}
.center {
    display:table-cell;
    width:34%; max-width:1000px;
    text-align:center;
}