.navbar {
    background-color: var(--background_color);
    display: flex;
    flex-direction: row;
}

.navbar-brand-title {
    color: var(--yellow1);
    font-weight: bold;
}

.navbar-brand-title:hover {
    color: var(--yellow1);
}

.navbar-brand-menu {
    color: var(--yellow1);
    cursor: pointer;
    font-weight: bold;
}

.navbar-brand-menu:hover {
    color: white;
}

.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23FFEB3B' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Replace '%23ff6347' with the desired hex color for the icon */
}