.navbar{

    position:sticky;

    top:0;

    z-index:999;

    height:75px;

    background:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 60px;

    box-shadow:0 3px 15px rgba(0,0,0,.05);

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:32px;

    font-weight:700;

    color:#2563eb;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:35px;

}

.navbar a{

    color:#333;

    font-weight:500;

}

.navbar a:hover{

    color:#2563eb;

}