
* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100%;
  overflow-y: auto; /* 전체 페이지 스크롤 */
}

.container {
  display: flex;
  min-height: 100vh;
}

.left {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.left p {
  font-size: 2.0rem;
  color: white;
  font-weight: bold;
}

.left ul li a {
  font-size: 1.1rem;       /* 글자 크기 조정 */
  color: white;            /* 글자 색상을 하얀색으로 */
  font-weight: bold;       /* (선택) 글자 굵게 */
}

.left ul li a:hover {
  text-decoration: underline;
  color: #ddd;             /* (선택) 호버 시 연한 회색으로 */
}



.right {
  flex: 1;
  background-color: #ffffff;
  padding: 40px 30px;
  /* ↓ 이 줄 제거 */
  /* overflow-y: auto; */
}


    h1 {
      margin-bottom: 20px;
      font-size: 24px;
    }

    p {
      line-height: 1.6;
      margin-bottom: 15px;
    }

    ul {
      padding-left: 20px;
    }

    li {
      margin-bottom: 10px;
    }

    a {
      color: #007bff;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }
.profile-photo {
    width: 150px;  /* 너비 설정 */
    height: 150px; /* 높이 설정 */
    object-fit: cover; /* 이미지 비율 유지 */
    border-radius: 50%; /* 원형으로 만들기 */
    margin: 20px auto; /* 상하 여백 20px, 좌우 중앙 정렬 */
    display: block; /* 블록 요소로 변경하여 margin auto 적용 */
}

.left h1 {
    text-align: center;
    margin: 20px 0;
}
