/* 폰트 import */
@font-face {
    font-family: 'SF_HailSnow';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2106@1.1/SF_HailSnow.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    /*background-color: rgb(255,255,255);*/
    background-image: url(Other_Resource/BG.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    /* flex-direction: column; */
    margin: 0;
    min-height: 100vh;
    position: relative;
    align-items: center;
    font-size: 120% !important;
    padding: 0 1rem;
}

@media screen and (min-width: 600px) {
    .Header_container {
        width: 600px;
        padding: 2rem 4rem;
    }
}

.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex; justify-content: center; align-items: center;
    color: white; font-size: 24px; text-align: center;
    cursor: pointer; user-select: none;
    z-index: 100;
}

.mute-btn {
    position: fixed;
    bottom: 20px; 
    left: 20px;   
    background: rgba(171, 171, 171, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.mute-btn:hover {
    background: rgba(113, 113, 113, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style-type: none;
  padding: 0;
}

/* 컨테이너와 헤더 스타일 */
.Container_A {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    align-items: flex-start; /* 좌측 정렬 */
    justify-content: flex-start; /* 세로 위쪽 정렬 */
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    padding: 20px 20px;
    width: 600px;
    font-family: SF_HailSnow;
    font-weight: bold;
}

div {
    display: block;
    unicode-bidi: isolate;
}

@media screen and (min-width: 600px) {
    .Header_container {
        width: 600px;
        padding: 2rem 4rem;
    }
}

/* 블로그 이름 스타일 */
.header_Name {
    font-size: 2rem;/* 크기 확대 */
    font-weight: bold; /* 굵게 */
    margin-bottom: 15px; /* 이름과 아래 콘텐츠 사이 간격 */
}

/* 메뉴 스타일 조정 */
.contents-title {
    margin-bottom: 5px; /* 메뉴 제목과 항목 사이 간격 */
    font-size: 1.2rem; /* 약간 큰 글씨 */
}

.Menu_Title {
    display: block;
    font-family: SF_HailSnow , sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
}

/* 네비게이션 링크 스타일 */
.Category_Content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    cursor: pointer;
    
}

.Category_Name {
    font-weight: bold;
    font-size: 1.25rem;
}

.CA_DesignLine {
    flex: 1;
    margin: 0 0.5rem;
    border-bottom: 1px solid #ccc;
}


nav.headB {
    width: 100%;
}

.Category_Selectbox {
    display: flex;
    background-color: rgb(190, 190, 190);
    width: 100%;
    align-items: center;
    margin: 1rem 0;
    padding-left: 5%;
    padding-right: 5%;
    justify-content: center;
    height: 50px;
    color: black;
    font-size: 20pt;
    border-radius: 5px;
    transition: all 0.3s ease-in-out; /* 부드러운 전환 효과 */
}

.Category_Selectbox:hover {
    background-color: lightgray; /* 배경색 밝게 변경 */
    color: black; /* 글자색 변경 */
    transform: scale(1.025); /* 살짝 확대 */
}


.hidden { display: none; }