@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic','Nanum Gothic', 'sans-serif';
    letter-spacing: -0.02em;
}

html, body {
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    pointer-events : none;
}

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

:root {
    --main-color: #35d9eb;
}

::selection {
    color: #fff;
    background-color: var(--main-color);
}

.cursor {
    position:absolute;
    top:0;
    left: 0;
    width: 200px;
    height: 70px;
    transform:translate(5%, 5%);
    z-index: 999;
}


/*==================================================*/
.fx-copyright {
    position: fixed;
    bottom: 50px; left: 50px;
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    z-index: 10;
}

.fp-viewing-about .fx-copyright,
.fp-viewing-skills .fx-copyright,
.fp-viewing-education .fx-copyright {
    color: rgba(0, 0, 0, .2);
    font-weight: 700;
}


/*==================================================*/
#fp-nav.fp-left {
    left: 50px;
}

#fp-nav.fp-right {
    right: 50px;
}

#fp-nav ul, .fp-slidesNav ul {
    display: flex;
    flex-direction: column;
}

#fp-nav ul li, .fp-slidesNav ul li {
    width: unset;
    display: flex;
    gap: 1rem;
}

#fp-nav.fp-right ul li {
    flex-direction: row-reverse;
}

#fp-nav ul li a, .fp-slidesNav ul li a {
    width: 2px;
    height: 25px;
}

#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span {
    margin: 0;
    width: 2px;
    height: 25px;
    background: #fff;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    margin: 0;
    width: 2px;
    height: 25px;
    background: rgba(255, 255, 255, .2);
}

#fp-nav ul li .fp-tooltip {
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Pretendard';
}

#fp-nav ul li:hover .fp-tooltip {
    color: #aaa;
}

#fp-nav.fp-show-active a.active+.fp-tooltip {
    color: #fff;
}



/*==================================================*/
@media (max-width: 1150px) {
    #fp-nav {
        display: none;
    }

    .cursor {
        display: none;
    }

    .fx-copyright {
        bottom: 20px; left: 20px;
    }
}


@media (max-width: 850px) {
    .fx-copyright {
        display: none;
    }
}