I'm trying to fix an error in my site to leave h3
in the center of the section, I've tried several methods, I do not know if it can is error or another.
CSS is this:
.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%;
}
and the HTML is this:
<section class="BlackSky">
<section class="StarsSky">
<h3>Givago Fritzen</h3>
</section>
</section>