html {
    scroll-behavior:smooth;
}
.swiper-container {
    width:1000px;
    height:588px;
    border:5px solid silver;
    border-radius:7px;
    /* box-shadow:0 0 20px #ccc inset; */
}
.swiper-slide {
    text-align:center;
    display:flex; /* 내용을 중앙정렬 하기위해 flex 사용 */
    align-items:center; /* 위아래 기준 중앙정렬 */
    justify-content:center; /* 좌우 기준 중앙정렬 */
}
.swiper-slide img {
	height: 95%;
}