I want to centralize the "Text" but it doesn't work with text-align: center.
HTML code:
<section class="product">
<img src="capa.jpg">
<p>Text</p>
<h4> Name: x</h4>
<h4> Type: y</h4>
<h4> Pages: 100</h4>
CSS code:
.product p {
background-color: #0f121f;
color: aliceblue;
/*padding: 5px 50px;*/
width: 210px;
height: 35px;
font-family: Arial, Helvetica, sans-serif;
margin-top: 5px;
display: block;
border-radius: 5px;
font-size: 16px;
text-align: center;
}