Need Help with Build a Personal Portfolio Webpage PLEASE

Hey guys. I’m working on the Responsive Web Design Projects - Build a Personal Portfolio Webpage. I’m having trouble with the Projects Section.
Does anyone know how to make the project images align horizontally instead of vertically and make the text show under the project image? I put a link to my code below.Thanks a lot :smiley:

Link To Code - https://codepen.io/officialsn/pen/jObGQGy?editors=1100

The images are displayed in a vertical column because you are applying display: flex and then flex-direction: column to their container. Remove flex-direction: column.
If you want the text to show below the image, you can apply display: flex and flex-direction:column to its container.