how can i set text (Absolute) position center horizontally and vertically in hero image. i have mentioned my css below
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
color: white;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}