a {
  text-decoration: none; /* 밑줄 제거 */
  color: inherit;         /* 부모 요소의 글자 색상 상속 (초기화) */
}
body {
    background: #050505;
    color: #ddd;
    margin: 0px;
    padding: 0px;
}
.Way_Header {
    display: flex;
    align-items: center;
    background: #000;
    border-bottom: 1px solid #151515;
    padding: 10px;
    position: sticky;
    top: 0;          /* 화면 맨 위에 고정 */
    z-index: 1000;   /* 다른 콘텐츠 위에 배치 (필요에 따라 조절) */
}
.Way_Logo_Block {
    display: flex;
    align-items: center;
}
.Way_Logo {
    border: 1px solid #151515;
    padding: 5px 20px;
    margin-right: 15px;
}
.Way_Logo:hover {
    background: #0e23e4;
    border: 1px solid #0e23e4;
    transition: background-color 0.5s;
}
.Way_Menu_Block {
    margin-left: auto;
    display: flex;
}
.Way_Menu {
    border: 1px solid #151515;
    font-size: 14px;
    padding: 5px 20px;
    margin-left: 15px;
}
.Way_Menu:hover {
    background: #0e23e4;
    border: 1px solid #0e23e4;
    transition: background-color 0.5s;
}

























/* 크롬, 사파리, 엣지 */
::-webkit-scrollbar {
  width: 8px; /* 두께 */
}
::-webkit-scrollbar-track {
  background: #050505; /* 배경 (검은색) */
}
::-webkit-scrollbar-thumb {
  background: #333333; /* 손잡이 (어두운 회색) */
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #444444; /* 마우스 올렸을 때 */
}

/* 파이어폭스 */
html {
  scrollbar-color: #333333 #050505;
  scrollbar-width: thin;
}