#projects .content { display: flex; flex-direction: column; } .project-list { display: flex; flex-direction: row; gap : 1rem; margin-bottom: 2rem; } .project-list img { width: 215px; border : solid 1px black; border-radius: 15px; transition: transform 0.2s ease-in-out; } .project-list img:hover { transform: scale(1.1); }