body {
    background-image: url('image/wall_about.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
@font-face {
	font-family: 'Pretendard';
	src: url('./fonts/PretendardVariable.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
	background-color: #e6e6e6;
	margin: 0;
}

.side-nav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    transform: translateX(-250px); /* 화면 밖으로 숨김 */
}

.side-nav.open {
    transform: translateX(0); /* open 클래스가 추가되면 이동하여 보임 */
}

.side-nav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.side-nav a:hover {
    color: #f1f1f1;
}

.side-nav .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}








header {
    border: none;
    width: 100%; /* 100vw 대신 100% 사용 */
    position: fixed; /* relative에서 fixed로 변경 */
    top: 0; /* 상단에 고정 */
    left: 0; /* 좌측에 고정 */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px; /* 상하 패딩 추가 */
    background-color: #ffffff; /* 반투명 검정 */
    z-index: 100; /* 다른 요소들보다 뒤에 위치 */
}

.header-left span,
.header-right img {
  height: 40px;         /* 원하는 동일 높이로 지정 */
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

.header-center img {
  height: 60px; /* 로고만 더 크게 */
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

.header-left span {
  font-size: 40px;      /* 아이콘 크기도 맞춰줌 */
}

.menu-btn {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #000000;
}









main {
    position: relative; /* footer 위치를 위해 */
    margin-top: 400px;
}

main a {
    display: block;
    max-width: 200px; /* 최대 버튼의 너비를 200px로 제한 (너무 크지 않도록) */
    text-align: center; /* 버튼 내 텍스트를 가운데 정렬 */
    margin: 20px auto 0 auto; /* 버튼 위쪽에 20px 여백을 주고, 좌우는 자동으로 중앙 정렬 */
    padding: 10px 20px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.bio_box {
    max-width: 200px;
    margin: 0 auto 0 auto;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    text-align: left;
}
.bio_row {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    word-break: break-all;
}
.bio_row:last-child {
    margin-bottom: 0;
}
.bio_emoji {
    font-size: 1em;
    margin-right: 2px;
}


















footer {
    margin-top: 500px;
	text-align: center;
	padding: 20px;
	background-color: transparent;
	color: #ffffff;
	font-size: 60%;
}
