Removing blank space below header [closed]

That header has margin-bottom: 30px;, so you have to add this to your CSS.

.site-header {
    margin-bottom: 0px;
}

If you want to remove it even more, the content has some margin-top, so you have to add this to your CSS.

.entry-content, {
    margin-top: 0;
}

In case you don’t know how to add CSS, check this out.