.navbar {

    position: relative;

    align-self:flex-start;

    display: flex;



    height: auto;

    align-items: center;

    gap: 3rem;

    padding: 1.5rem 2rem 0 2rem;



    z-index: 1000;

}



li.active {

    margin-bottom: -0.5625rem;

    padding-bottom: 0.5rem;

}



div.active {

    border-top: 1px solid black;

    border-right: 1px solid black;

    border-left: 1px solid black;



    padding-top: 1rem;

}



.navbar ul li:first-child { /*Image*/

    padding: 0.5rem 0.5rem;

    display: flex;

    align-items: center;

    justify-content: center;

}



.navbar img {

    height: 2rem;

    width: auto;

    display:block;

}



.navbar ul {

    display: flex;

    list-style: none;

    margin: 0;

    padding: 0;

}



.navbar li {

    position: relative;

    flex: 1;

    display: block;

    border-radius: 0.5rem 0.5rem 0 0;



    background-color: white;

    box-shadow: 0.5rem -0.5rem 0.5rem rgba(0,0,0,0.08);



    z-index: 2;

}



.navbar li div {

    display: block;

    text-align: center;



    width: 100%;

    color: #292560;

    padding: 1rem 1rem;

    text-decoration: none;

    white-space: nowrap;

    border-radius: 0.5rem 0.5rem 0 0;

    background-color: white;



    z-index: 1000;

}



.navbar li div:hover {

    cursor: pointer;

}
