How to change the location of the menu

I had a look at the GeneratePress theme for you; adding this custom CSS should do it:

.nav-float-right .inside-header .main-navigation {
    float: none !important;
}

EDIT: Or, as Madalin showed, a non-!important version:

html .nav-float-right .inside-header .main-navigation {
    float: none;
}