I have, unfortunately. This was my original code for the page:
CSS:
section.once {
width: 660px;
position: relative;
float: left;
padding-bottom: 10px;
clear: left;
}
article.third {
text-align: center;
float: left;
width: 150px;
position: relative;
padding: 25px;
overflow: hidden;
}
.third img {
border-radius: 25px;
width: 100%;
position: relative;
}
HTML:
<section class="home">
<article class="third">
<img src="https://lorempicsum.com/futurama/350/200/1" />
</article>
<article class="third">
<img src="https://lorempicsum.com/futurama/350/200/1" />
</article>
<article class="third">
<img src="https://lorempicsum.com/futurama/350/200/1" />
</article>
</section>