header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5vw;
    z-index: 1000;
    backdrop-filter: blur(10px); 
}


header img{
    width: 7vw;
    min-width: 70px;
}

header ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-left: 20px; */

}
header a {
    text-decoration: none;
    color: black;
    font-size: clamp(10px, 1.2vw, 16px);
    gap: 3px;
    margin-left: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    &:has(> i):after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: black;
        transition: width .3s;
        background-color: rgb(0, 0, 0);
    }
    
    &:hover::after {
        width: 100%;
    }
}
