#topBar {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 10px;
    z-index: 2000;
    padding: 15px 0;
}

#topBar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    /* backdrop-filter: blur(10px); */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#topBarLeft {
    display: inline-block;
}

#menuIcon {
    width: 60px;
    cursor: pointer;
}

@media (max-width: 768px) {
    #menuIcon {
        width: 50px;
     }
}

#logoTopBar {
    width: 150px;
}

@media (max-width: 768px) {
    #logoTopBar {
        width: 100px;
     }
}