Struggling with H1 on my Tribute page

Hi guys,

as you can see on my page, there is a mistake with the h1 line. I can only half read it. How can I solve the problem?

https://codepen.io/Bulgaria/pen/PgLRba

You put -40px top margin.

#main{background-color: lightgray;
      text-align: center;
      box-shadow: 0 0 10px #111;
      /*margin: -40px */ 125px 100px 125px;         padding-bottom: 30px;
}

Put it positive or either erase the margin:

#main{background-color: lightgray;
      text-align: center;
      box-shadow: 0 0 10px #111;
      /*margin: 40px */125px 100px 125px;         padding-bottom: 30px;
}

Solved! Thank you. :slight_smile: