/* 전체 드래그 금지 및 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.center-link {
    /* 1. 버튼 내부 글자 중앙 정렬 */
    display: flex;
    justify-content: center;
    align-items: center;

    /* 2. 버튼 크기 */
    width: 150px;
    height: 50px;
    

    /* 3. 버튼 자체를 가로 중앙에 배치 */
    margin: 0 auto;
    margin-top: 20px;

    /* 4. 스타일 */
    text-decoration: none;
    color: rgb(0, 0, 0);
    border: 1px solid #000;
    /* 버튼이 잘 보이게 테두리 추가 */
}

h1 {
    padding-top:300px;
    size:30px;
    margin: 0;           /* 기본 위아래 여백 제거 */
    font-size: 30px;     /* 글자 크기 */
    color: #333;         /* 글자 색상 */
    text-align: center;  /* 혹시 글자가 여러 줄이 되면 글자 자체도 중앙 정렬 */
}

p{
    margin-top: 20px;
    color: #333;
    text-align: center; 
}