Не могу разобрать, почему не работает background: url(); Вот код:
<div class="wrapper">
<section class="question">
<h1>i like to ask the same question</h1>
<p>many many times</p>
<button>Ok ask me</button>
</section>
</div>
.question h1 {
font-size: 52px;
text-transform: uppercase;
text-align: center;
font-family: "SegoeWP-SemiBold", sans-serif;
}
.question p {
font-size: 48px;
font-family: "SegoeWP-SemiLight", sans-serif;
text-transform: uppercase;
text-align: center;
}
.question button {
width: 275px;
height: 60px;
font-size: 34px;
font-weight: bold;
background: #4cbd38;
color: #fff;
border: none;
border-radius: 5px;
/*box-shadow: */
text-align: center;
cursor: pointer;
margin: 46px 417px 0;
}
.wrapper {
width: 1096px;
margin: 0 auto;
}
.question {
padding: 168px 0 270px;
background: url(../image/Layer 3.png);
}