ul{
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
    
}
.header{
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(7px);
    z-index: 1000;
}
.header__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
    min-height: 68px;
}
.logo{
    font-size: 25px;
    letter-spacing: -1.5px;
    font-weight: 600;
}
.nav__list{
    display: flex;
    column-gap: 40px;
    padding-top: 25px;
}
.nav__link{
    color: rgba(0, 0, 0, 0.65);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s;
    
}
.nav__link:hover{
    color: rgb(0, 0, 0,1);

}
#navButton{
    background-color: #0071e3;
    padding: 7px 18px;
    border-radius: 5000px;
    border-color:transparent;
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.4s;

}
#navButton:hover{
    background-color: rgb(28, 128,228);
}

