Hi Gerrit,
The SVG icon is centered. It just doesn’t look like it because of its design. One thing you can do is to upload a different SVG, or you can add a little more bottom padding to make it center.
Sample code:
span.gp-icon.icon-menu-bars {
padding-bottom: 13px;
}
Alternative:
span.gp-icon.icon-menu-bars svg {
padding-bottom: 3px;
}
As for the menu SVG color on hover, you can try this:
.menu-toggle:hover span.gp-icon.icon-menu-bars svg {
fill: #fff;
}