.main-header {
display: flex;
align-items: center;
position: fixed;
z-index: 3;
width: 45vw;
user-select: none;
border-bottom: 1px var(--border-color) solid;
height: 40px;
gap: 4px;
justify-content: center;
background: rgba(0, 0, 0, 0.733);
backdrop-filter: blur(10px);
padding: 15px 0;
}

.header-content a {
    color: white;
    text-decoration: none;
    background-color: #3D9BE9;
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: start;
    padding: 8px 15px;
    gap: 2px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2rem;
    transition: .5s;
}

.header-content a:hover {
    background-color: #2B7CC0;
}

.header-content a .icon {
    margin-left: 0;
    width: 22px;
}

.header-content a img {
    height: 22px !important;
    margin: 0;
}

.header-search {
    display: flex;
    align-items: center;
    width: 400px;
    color: white;
    height: 40px;
    margin-left: 10px;
    gap: 10px;
    background-color: #070707;
    border-radius: 2rem;
    border: 1px solid #242424;
}

.header-search .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.header-search .icon img {
    height: 24px;
}

.header-search input {
    background: transparent;
    border: none;
    width: 75%;
    padding: 0 20px 0 0;
    color: white;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    outline: none;
    font-size: 14px;
    font-weight: 500;
}