#nav_bar {
    display: flex;
    flex-direction: row;
    background-color: white;
    height: 50px;
    align-items: center;
    color: black;
    border-bottom: 1px solid black;
    padding: 5px 20px;
    width: 100vw;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav_header{
    text-align: center;
    width: fit-content;
    padding: 2px 10px;
    height: 37px;
    background-color: hsla(50, 100%, 73%, 45%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
}

.nav_links {
    width: 50%;
    display: flex;
    justify-content: space-between;
    color: black;
}


.nav_link {
    list-style: none;

    color: black;
    text-align: center;
}

.navbar_brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

a {
    text-decoration: none;
    color: inherit;
    /* display: inline; */
}

.nav_icon {
    width: 28px
}

.nav_texts {
    display: inline;
}



@media screen and (min-width: 1059px) {
    .nav_icon{
        display: none;
    }
}
@media screen and (max-width: 1060px) {
    .nav_text{
        display: none;
    }
}



