Good Night, I'm having a problem aligning in the center of the section (using Html5) an H3. I've tried it in many ways but nothing.
HTML
<section class="BlackSky"> //Bacgkround
<section class="StarsSky">
<h3>Teste</h3>
</section>
</section>
CSS
.BlackSky{
background-color: #1C1624;
width: 100%;
height: 300px;
}
.StarsSky{
width: 100%;
height: 100%;
background-image: url('../images/star.png');
}
.StarsSky h3{
font-size: 4em;
color: #F0FFFF;
margin-bottom:0%;
}
However, the "Test" is not aligning correctly.
Any ideas?