body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  min-height: 100vh;
}

/* 왼쪽 프로필 영역 */
.profile {
  flex: 1;
  background-color: #f5f5f5;
  padding: 30px;
  text-align: center;
  border-right: 1px solid #ddd;
}

.profile img {
  max-width: 150px;
  margin-bottom: 20px;
}

.profile h2 {
  margin: 10px 0;
  font-size: 20px;
  color: #333;
}

.profile a {
  display: block;
  margin: 6px 0;
  font-size: 15px;
  text-decoration: none;
  color: #0073e6;
}

.profile a:hover {
  text-decoration: underline;
}

/* 오른쪽 프로젝트 영역 */
.projects {
  flex: 2;
  padding: 30px;
}

.projects h1 {
  margin-top: 0;
  font-size: 28px;
  border-bottom: 2px solid #0073e6;
  padding-bottom: 10px;
  color: #0073e6;
}

.project-list {
  list-style: none;
  padding: 0;
}

.project-list li {
  margin: 15px 0;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: background 0.2s;
}

.project-list li:hover {
  background: #f0f8ff;
}

.project-list a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
}

.project-list a:hover {
  color: #0073e6;
}
