이런 느낌의 이미지 슬라이더를 만들어보았다 HTML Project CSS #project .title { display: inline-block; } .slider { width: 800px; height: 400px; margin: 0 auto; display: flex; flex-direction: row; justify-content: space-between; align-items: center; } .slider-wrapper { width: 600px; height: 400px; overflow: hidden; } .slider-slide { width: 1800px; display: flex; flex-direction: row; transition: all 0.5s; } .slide..