Build a Tribute Page - Iccorect align

Hello everybody. I am new at FreeCodeCamp. Great site and community, Thanks Quincy Larson and all the community.

I have finished my tribute page. But I can’t align the main area in order to finish at the same line that header and footer do.

This is the CodePen:

https://codepen.io/rigo-villalta/full/VBwLer/

Can somebody help me with that?

Thanks

PD: I am not native english speaker, so if something is not clear let me know it.

You need to add box-sizing in css like :

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

that will solve your problem.

Yes, This is the right solution.

Thanks sorinr and egmashraful.

The box-sizing property is something I forget all the time.

You are very welcome @Rigo-Villalta