As mentioned above,
your contact.html layout page has the closing </div> outside the define block. This is breaking your template. See doc: Base templates and blocks | Hugo
Not Ok:
{{ define "main" }}
...
{{ end }}
</div>
Ok:
{{ define "main" }}
...
</div>
{{ end }}