:root {
    --primary-color: #ffc700;
    --subcolor: #ffa800;
    
    --text-color: #111;
    --bg-dark: #1a1f25;
    --bg-light: #f7f6f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Pretendard Variable', -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;
    word-break: keep-all;
    line-height: 1.5;
    color: var(--text-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

.sub-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    color: #777;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .content {
        padding: 0 15px;
    }
} 