People are as follows I have a parent div and another div with an absolute positional text ... this text is aligned to the top and left of the parent div and I need to align to the center ... things like top: x% or left x% .. n work because the parent element is dynamic and responsive ... I need it to be right in the center .. I tried things like justify content and align items in the center but it did not work ... someone knows how ... follow the div code:
.textotoposobre{
text-align: center;
color: white;
font-family: 'Open Sans';
align-items: center;
justify-content: center;
top: 30%;
left: 28%;
}