create 2 columns using CSS grid as:
.Background {
display: grid;
grid-template-columns: 40% 60%;
}
I want to update the second column (the image column) beneath the first column, however, for some reason, this is not responding. How do I accomplish this?