.navbar {
    position:fixed;
    top: var(--banner-offset);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #ffffff;
    width: 100%;
    height: 6%;
    z-index: 10000;
}


@media screen and (max-width: 950px) {
    .navbar {
        position:fixed;
        top: var(--banner-offset);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        background-color: #ffffff;
        width: 100%;
        z-index: 10000;

    }
}