[html]
<div class="hero-overlay">
<div class="centered-container w-container">
<p>Текст Текст Текст Текст Текст Текст Текст Текст Текст Текст</p><br><br>
</div>
</div>
<style>
.hero-overlay {
display: flex;
height: 500px;
width: 600px;
max-height: 500px;
padding-top: 50px;
padding-bottom: 50px;
justify-content: center;
align-items: center;
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://image.freepik.com/free-vector/m … -25498.jpg);
background-position: 0px 0px, 50% 50%;
background-size: auto, cover;
color: rgb(255, 255, 255);
}
.centered-container {
margin-top: -3px;
padding: 40px;
max-width:440px;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://uploads-ssl.webflow.com/5dfb146 … 8E5mpo.jpg);
background-position: 0px 0px, 50% 50%;
background-size: auto, auto;
background-repeat: repeat, repeat-x;
background-attachment: scroll, scroll;
overflow: auto;
height: 440px;
text-align: center;
}
@media screen and (max-width: 500px) {
.hero-overlay {
padding: 40px 20px;
}
}
@media screen and (max-width: 400px) {
.centered-container {
text-align: center;
}
}
</style>[/html]