@font-face {
  font-family: "Noto Sans KR Regular"; /* 사용하고 싶은 font-family명을 지정 */
  src: url("fonts/NotoSans-Regular.otf") format("opentype"); /* 폰트파일 불러오기 */
}

@font-face {
  font-family: "Noto Sans KR"; /* 사용하고 싶은 font-family명을 지정 */
  src: url("fonts/NotoSans-Regular.otf") format("opentype"); /* 폰트파일 불러오기 */
}


:root{
    --pastel-pink: #ffd6e8;
    --pastel-blue: #cfe8ff;
    --pastel-mint: #d4f5e9;
    --accent: #8fd6c4;
    --text-dark: #3a3a4a;
    --card-bg: #ffffff;
}

*{
    box-sizing: border-box;
}

html, body{
    margin: 0;
    padding: 0;
}

.main{
    width: 100%;
    min-height: 100vh;
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(160deg, var(--pastel-blue) 0%, var(--pastel-pink) 55%, var(--pastel-mint) 100%);
    background-attachment: fixed;
    color: var(--text-dark);
}

.center{
    margin: 0 auto;
}

.page{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 16px 32px;
    min-height: 100vh;
}

.profile{
    width: 300px;
    text-align: center;
}

.radius_profile{
    border-radius: 50%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 6px 18px rgba(80, 60, 90, 0.18);
}

#nickname{
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 16px 0 36px;
    color: var(--text-dark);
}

.links{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.b1{
    display: flex;
    align-items: center;
    gap: 14px;
    width: 90%;
    max-width: 420px;
    background-color: var(--card-bg);
    border-radius: 18px;
    margin-bottom: 14px;
    padding: 14px 16px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(120, 100, 130, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.b1:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(120, 100, 130, 0.2);
    background-color: var(--pastel-mint);
}

.icon{
    width: 36px;
    height: 36px;
    display: block;
}

.div_icon{
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.username{
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    text-align: left;
}

.username li:first-child{
    font-size: 15px;
    color: var(--text-dark);
}

.username li:last-child{
    font-size: 13px;
    color: #8a8a98;
    margin-top: 2px;
}

.footer{
    margin-top: 24px;
    font-size: 12px;
    color: #9a92a8;
}

ul, ol{
    list-style: none;
}
