header {
    position: relative;
    width: 100%;
    height: 90px;
    z-index: 26;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2E3032;
}

header span {
    color: var(--white);
    font-size: var(--font-size-xs);
    font-family: var(--heading);
    padding: 2.6rem;
}

header nav ul {
    padding: 2.6rem;
    list-style: none;
    display: flex;
    gap: 15px;
}

header nav ul li {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: 3px solid var(--white);
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    background-color: rgba(0, 0, 0, 0.143);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav ul li:first-child {
    width: max-content;
    border-radius: 15px;
}

header nav ul li:first-child span {
    margin: 0;
    padding: 15px;
}

header nav ul li:first-child i{
    margin-left: 15px;
}

header nav ul li:hover {
    cursor: pointer;
} 

header nav ul li i {
        color: var(--white);
    font-size: var(--font-size-md);
}
