.nav_header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    color: #e2e4e6;
}

#menu_button_exit{
    display: flex;
    background-color: inherit;
    border: none;
    font-size: 3em;
    color: #e2e4e6;
    padding: 30px;
    justify-content: space-between;
    transition: 300ms;
}

#menu_button_exit:hover{
    cursor: pointer;
    color: #808080;
    transition: 300ms;
}


.nav_menu_txt{
    font-size: 2em;
}

.nav_ponude{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 30px;
}

.nav_ponude_txt{
    align-self: flex-start;
    color: #e2e4e6;
}

.nav_ul{
    font-size: 1.2em;
    list-style-type: none;
    color: #e6e6e6;
}

.nav_link{
    text-decoration: none;
    color: #e6e6e6;
}

.nav_link:hover{
    color: #6a6a6a;
    transition: 300ms;
}

.nav_link:active{
    color: #1b1b1b;
    transition: 200ms;
}





