@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
@import "./fonts.css";

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html {
 /* scroll-behavior: smooth; */
}
body {
 overflow-x: hidden;
 background-color: #fff;
 font-family: "Noto Sans KR", sans-serif;
 font-size: 16px;
 font-style: normal;
 font-weight: 400;
 line-height: 1.6;
 color: #1a1a1a;
 letter-spacing: -0.02em;
 font-optical-sizing: auto;
}
ul,
li {
 list-style: none;
}
a {
 text-decoration: none;
 color: #1a1a1a;
}
img {
 border: 0;
 vertical-align: middle;
}

/* swiper */
.swiper {
 width: 100%;
 height: 100%;
}

.swiper-slide {
 text-align: center;
 font-size: 18px;
 background: #444;
 display: flex;
 justify-content: center;
 align-items: center;
}

.swiper-slide img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
}
