@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

html {
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
}

body {
    background-color: #242323;
}

.nav-ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    position: fixed;
    margin: 0;
    padding-top: 0.5rem;
    padding-left: 0;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(36, 35, 35, 0.8); 
    z-index: 1000;
}

.nav-li a {
    margin: 0 1rem;
    color: #d6d6d6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-li a:hover {
    background-color: #1c1c1c;
    color: #FFFFFF;
}


.main-frame {
    text-align: center;
    margin-top: 5rem;
    margin: 0 auto;
    height: 100vh;
}

.main-frame h1 {
    background: linear-gradient(to right top, #9bf5f5, #8361ff);
    color: transparent;
    -webkit-background-clip: text;
    font-size: 8rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #8361ff;
    display: inline-block;

}

.about-frame {
    text-align: center;
    width: 90%;
    margin: 0 auto; 
    height: 100vh;
    background-color: #1c1c1c;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 10rem;
}

#scroll-indicator {
    position: fixed; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%);
    font-size: 2rem; 
    color: #FFFFFF;
    cursor: pointer;
    animation: bounce 1.5s infinite; 
}
.my-profile {
    border-radius: 3rem;
    margin: 5rem;
}

#scroll-indicator:hover {
    color: #8361ff; 
}
.info-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.info-ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

@keyframes bounce {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}