JSFiddle - React, Tailwind, and code Playground

HTML

<div class="header"></div>

CSS

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 10000;
    height: 110px;
}

.header:after {
    content: '';
    position: absolute;
    background: black;
    width: 50px;
    height: 50px;
    z-index: 1;
    border-radius: 25px;
    bottom: -25px;
    left: 50%;
    margin-left: -25px;
}