Whenever I scroll, the background image text seems to stick around no matter where I move on the page. Is there a way to keep it fixed in one place?
.bg-image {
background-image: url(../construction/3.jpg);
filter: blur(8px);
-webkit-filter: blur(8px);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-text {
background-color: #000;
color: white;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
margin: auto;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 80%;
padding: 20px;
text-align: center;
}