body {
    margin: 0;
    font-family: 'Black Han Sans', sans-serif;
}
header {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: sans-serif;
    position: relative;
}
.menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 60px;
    background-color: black;
    padding: 10px;
    border-radius: 5px;
}
.menu a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}
.hamburger {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}
.cover-image {
    width: 100%;
    height: auto;
}
.title {
    display: block;
    text-align: center;
    color: black;
    font-size: 24px;
    margin: 20px 0;
    font-family: 'Black Han Sans';
    cursor: default;
    text-decoration: none;
}
.header-link {
    color: white;
    text-decoration: none;
}
.header-link:hover {
    text-decoration: underline;
}
.made-in {
    text-align: center;
    color: gray;
    font-size: 16px;
    margin: 10px 0;
    font-family: sans-serif;
}
.character-section {
    display: none;
    text-align: center;
    padding: 20px;
    font-family: sans-serif;
}
.tabs {
    margin: 20px 0;
    color: #000000;
}
.tabs button {
    margin: 0 10px;
    padding: 10px 15px;
    cursor: pointer;
    background-color: #ffffff;
    border: 2px solid transparent; /* 기본적으로 투명한 테두리 설정 */
    border-radius: 5px;
    font-size: 18px;
}

.tabs button:hover {
    border: 2px solid black; /* 마우스 오버 시 검정색 테두리 */
}
.tab-content {
    text-align: left;
    margin-top: 20px;
}

.listen-music {
    display: none;
    text-align: center;
    padding: 20px;
    font-family: sans-serif;
}

.tab-line {
    height: 1px; /* 줄의 높이 */
    background-color: rgb(226, 226, 226); /* 줄의 색상 */
    margin: 5px 0; /* 위 아래 여백 */
}
.profile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.profile-image {
    width: 100px; /* 원형의 너비 */
    height: 100px; /* 원형의 높이 */
    overflow: hidden; /* 넘치는 부분 숨김 */
    border-radius: 50%; /* 원형 만들기 */
}

.profile-image img {
    width: 100%; /* 부모 요소의 너비에 맞춤 */
    height: auto; /* 비율 유지하면서 높이 자동 조정 */
    max-height: 100%; /* 부모 요소의 높이에 맞춤 */
    object-fit: cover; /* 비율 유지하면서 잘라내기 */
}

.description {
    text-align: center;
    font-size: 16px;
    color: black;
    font-family: 'Noto Serif KR', sans-serif;
    font-weight: 500;
}

strong {
    font-size: 40px; /* 원하는 크기로 설정 */
    font-weight: bold; /* 기본적으로 굵은 글씨 */
}

.info {
    font-weight: normal; /* 덜 굵은 글씨 */
    font-size: 14px; /* 적당한 크기 설정 */
}

.description {
    font-weight: lighter; /* 가장 얇은 글씨 */
    font-size: 12px; /* 가장 작은 크기 설정 */
}

.square-image {
    display: flex; /* 플렉스 박스 사용 */
    justify-content: center; /* 수평 중앙 정렬 */
    margin-bottom: 10px; /* 아래쪽 여백 추가 */
}

.square-image img {
    width: 300px; /* 사각형 이미지의 너비 */
    height: 300px; /* 사각형 이미지의 높이 */
    object-fit: cover; /* 비율 유지하면서 잘라내기 */
}

.profile {
    display: inline-block; /* 프로필을 가로로 나열하기 위해 inline-block 사용 */
    margin: 10px; /* 프로필 간의 간격 */
}

.profile-image {
    width: 80px; /* 원형의 너비를 80px로 설정 */
    height: 80px; /* 원형의 높이를 80px로 설정 */
    overflow: hidden; /* 넘치는 부분 숨김 */
    border-radius: 50%; /* 원형 만들기 */
    display: flex; /* 중앙 정렬을 위해 flex 사용 */
    justify-content: center; /* 수평 중앙 정렬 */
    align-items: center; /* 수직 중앙 정렬 */
}

.profile-image img {
    width: 100%; /* 부모 요소의 너비에 맞춤 */
    height: auto; /* 비율 유지하면서 높이 자동 조정 */
    max-height: 100%; /* 부모 요소의 높이에 맞춤 */
    object-fit: cover; /* 비율 유지하면서 잘라내기 */
}

.music-player {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    text-align: center;
}
.control-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #000000; /* Green */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px; /* 버튼 간격 */
}
.control-button:hover {
    background-color: #363636;
}
.current-song {
    font-size: 18px;
    margin-bottom: 10px; /* 제목과 버튼 간격 */
}
.song-select {
    margin-bottom: 10px;
}

.abc {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    margin: 0; 
}

.music-player {
    text-align: center; 
}

.song-item {
    cursor: pointer; 
    transition: background-color 0.3s, color 0.3s;
}

.song-item:hover {
    background-color: #f0f0f0;
    color: blue;
}

.song-item:active {
    background-color: #e0e0e0; 
}

.newImg {
    display: flex; /* 플렉스 박스 사용 */
    justify-content: center; /* 수평 중앙 정렬 */
    margin-bottom: 10px; /* 아래쪽 여백 추가 */
}

.newImg img {
    width: 150px !important; /* 사각형 이미지의 너비 */
    height: 150px !important; /* 사각형 이미지의 높이 */
    object-fit: cover; /* 비율 유지하면서 잘라내기 */
}
