/* 전역 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1.5; /* 150% = 1.5 */
    color: #fff;
    background-color: #120101;
    font-weight: 400;
    padding-top: 80px; /* 고정된 네비게이션을 위한 여백 */
    margin: 0;
    padding-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.5; /* 150% = 1.5 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pretendard 폰트 굵기 클래스 */
.font-thin {
    font-weight: 100; /* Thin */
}

.font-extralight {
    font-weight: 200; /* ExtraLight */
}

.font-light {
    font-weight: 300; /* Light */
}

.font-regular {
    font-weight: 400; /* Regular */
}

.font-medium {
    font-weight: 500; /* Medium */
}

.font-semibold {
    font-weight: 600; /* SemiBold */
}

.font-bold {
    font-weight: 700; /* Bold */
}

.font-extrabold {
    font-weight: 800; /* ExtraBold */
}

.font-black {
    font-weight: 900; /* Black */
}