.navbar{
    display: flex;
    height: 10vh;
    /* width: 98.5%; */
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-primary);
    backdrop-filter: blur(50px);

    position: fixed;
    top: 0;
    left: 1vh;
    z-index: 999;
    padding: 0px 2vw;
}

.menu-list {
    line-height: 10vh;
    display: flex;
    justify-content: center;
}

ul li {
    padding: 0px 10px;
    list-style: none;
    text-decoration: none;
}

ul li a {
    color: var(--turquoise);
    text-decoration: none;
    padding: 8px 10px;
}

.logo {
    margin-left: 30px;
    height: 80%;
    width: 10%;
}

a img {
    line-height: 10vh;
    height: 100%;
    width: 120px;
}

.icon-bars{
    cursor: pointer;
    font-size: 1.5rem;
    justify-content: center;
    display: none;
    transition: 0.5s;
}

.menu-list li a:hover {
    border-radius: 10px;
    background: var(--secondary-color);
    color: var(--primary-text-color);
}