I'm trying to get one container to have two background images side by side, so I can center some text over the top of the two. As of right now I can only get one background image to show. How to I slide them apart?
HTML:
<article class="about-us">
<div class="staff">
<h2 class="about-us-content">Let us share your story.</h2>
</div>
</article>
CSS:
.staff {
height: 377px;
width: 377px;
background-image: url(Image1), url(Image2);
background-position: top left, bottom right;
background-repeat: no-repeat;
display: flex;
align-items: center;
justify-content: center;
}