Personal Portfolio challenge (nav bar issues)

Hej guys!
so I have just tried to get this porfolio page done… its still pretty basic but very “colorful”

So I am having a bit of trouble in getting the nav bar (margins, placement, padding etc) a bit wrong and also the main “headline” (which I would like a bit more to the left).
I just can’t seem to get it
[https://codepen.io/zoeyzali/pen/YLqVRQ]

Nice page you have here :slight_smile:

For the title issue, you can use negative value for margin and padding, for exemple :

h1 {
    margin-left = -20px;
}

About your nav bar, the fact that the header et nav have the same portion of style may not help :

header nav{
   float: right;
   margin: 0 0 80px 0   
}

You may want instead :

nav{
   float: right;
   margin: 0 0 80px 0   
}

Hope this help 

Hey! thank you, I think it sort of sorted it!