Placing the Menu to the Right
By default text is aligned to the left. In order to align it to the right just change the alignment in the nav.
nav{
text-align: right;
}
Now the problem is that we have a space between the edge of the nav and the list (menu) this is because in the list we placed the margins on the right
nav li{
margin-right: 20px;
}