I'm using z-index but my text still isn't coming above my tint in the bg. I'm new to coding so I'm sorry if I've done something wrong. Any help would be appreciated.
.parallax {
/* The image used */
background-image: url("https://www.lincoln.ac.uk/home/media/responsive2017/studywithus/internationalstudents/gatewayToEurope_1500x996px-min.jpg");
/* Set a specific height */
height: 100%;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-tint {
position: relative;
}
.bg-tint:before {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(56,56,56, 0.9);
transition: all .3s linear;
z-index: 2;
}
.bg-tint .content h3 {
z-index: 6;
}
<div class="parallax bg-tint">
<div class="content">
<h3 style="padding-top:200px; padding-bottom: 200px;font-weight: 400; font-size: 64px; color:white;">Covering your location!</h3>
<p>We cover most English speaking countries, including yours!</p>
</div>
</div>