Mam taki problem, ze jak scrolluje na dół to ten napis na środku headera też zjeżdża nadół, jak zrobić by stał w miejscu?
.header {
height: 860px;
background-image: url(images/header.png);
position: static;
}
.firma {
text-align: center;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
.firma h1 {
color: fff;
font-weight: strong;
font-size: 50px;
font-family: Montserrat;
}
.firma p {
font-family: Montserrat;
margin-top: -30px;
font-size: 30px;
}
<div class="header">
<div class="firma">
<h1>HIT TRANSPORT</h1>
<p>Przewóz ładunków na terenie Europy</p>
<a href="#"><button class="button">WIĘCEJ INFORMACJI</button></a>
</div>
</div>