At normal resolutions it doesn't break:
Now in smaller resolution breaks:
My css code:
tfoot {
display: grid;
grid-column: 1 / -1;
max-width: 100%;
justify-content: right;
background-image: url(https://dv.bamboostock.net/wp-content/uploads/2022/09/GABRIEL_png.png);
background-repeat: no-repeat;
background-size: cover;
background-position: left;
margin-top: 130px;
place-items: right;
}
My css code in breakpoint:
@media (min-width: 900px) and (max-width: 912px) {
tfoot {
max-width: 100% !important;
background-size: contain;
margin-top: 80px;
justify-items: end;
}
}

