@charset "UTF-8";
@import url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css');

body {
    font-family: 'SUIT', sans-serif;
    /* font-family: "Inter", sans-serif; */
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    display: flex;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 999;
}
header .logo {
    font-weight: 800;
}
header .main-nav > ul {
    display: flex;
    gap: 3rem;
}
header .main-nav > ul > li {
    position: relative;
}
header .main-nav > ul > li .nav-txt {
    display: inline-block;
    transition: transform 0.3s ease;
    transform-origin: center bottom;
    font-size: 1.4rem;
}
header .main-nav > ul > li .nav-txt:hover {
    transform: scale(0.95);
    color: #555;
}
header .main-nav > ul > li:first-child::after {
    display: none;
}

.page-layout {
    max-width: 166rem;
    margin: 0 auto;
    padding: 0 3rem;
}
/* footer */
footer {
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-size: 1.4rem;
}

/* 반응형 */
@media (max-width: 480px) {
    header .main-nav > ul {
        font-size: 1.2rem;
        gap: 2rem;
    }
    header .main-nav > ul > li::after {
        top: 0.5rem;
        left: -1rem;
    }
    footer {
        font-size: 1.2rem;
    }
}
