.header
{
   height: 50px;
   font-weight: bold;
   background: #0005;
   display: flex;
   justify-content: center;
   backdrop-filter: blur(100px);
   flex-shrink: 0;
}

.header > .inner
{
   max-width: 1200px;
   width: 100%;
   display: flex;
   align-items: center;
   gap: 20px;
   padding: 0 50px;
   color: #eee;
}

.header > .inner > :last-child
{
   margin-left: auto;
}