How can I add space between the menu and article title in coding?

Hi team, apologies for the super simple question. I am a newbie to coding.

How do I add space between my menu and the article title?

https://www.ambiento.bio/blogs/il-blog-sostenibile/cinque-motivi-abbonamento-mercato-online-sostenibile-2021

This is the code:

{{ article.title }}

{% if section.settings.blog_show_author %}
{{ ‘blogs.article.by_author’ | t: author: article.author }}
{% endif %}

{% if section.settings.blog_show_date %}

{{ article.published_at | time_tag: format: ‘date’ }}

{% endif %}

{{ article.content }}

{% if section.settings.show_share_buttons %}
{% include ‘social-sharing’, share_title: article.title, share_permalink: article.url, share_image: article.image %}
{% endif %}

Hello There,

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

.section-header.text-center h1 {
padding-top: 60px!important;
}