Person what is the best way to centralize a responsive image within a div that is responsive in% (in this case a row), ie that it has no measures defined in pixels, with max-width: 100% for example. If anyone knows, I wanted to know to align horizontally and vertically, I've tried all of these below but the image does not center in the middle of the row.
.logo-rodape {
max-width: 100%;
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY( -50% );
-moz-transform: translateY( -50% );}