/* 기본 설정 */

body, html {
    height: 100%;
    margin: 0;
    font-family: sans-serif;
}

/* 섹션 스타일 */
.section {
    height: max-content;
    color: white;
    transition: transform 0.2s ease-out;
    align-content: center;
    align-items: center;
    min-height: 100%;
}

/* 색상과 텍스트 스타일 */
.yellow_font {
    color: #ff9900;
}

.title {
    font-weight: bold;
    font-size: 41px;
    color: black;
    padding-bottom: 20px;
    text-align: center; /* PC와 모바일 모두에서 제목을 가운데 정렬 */
}

.yellow_back {
    background: #ff9900;
    color: white;
    width: fit-content;
    margin: 0 auto; /* 모든 화면에서 요소를 가운데 정렬 */
}

.sub_text {
    color: black;
    text-align: center; /* 텍스트를 가운데 정렬 */
}

/* 모바일 전용 스타일 조정 */
@media screen and (max-width: 760px) {
    .sub_text {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 16px;
        max-width: 420px;
        word-break: keep-all;
        margin: 0 auto; /* 모바일에서 텍스트를 가운데 정렬 */
    }

    .title {
        font-weight: bold;
        font-size: 24px;
        color: black;
        margin: 20px auto; /* 모바일에서 간격 조정 */
        text-align: center;
        width: fit-content;
        max-width: 90%;
    }

    .yellow_back {
        width: max-content;
        padding: 10px;
        height: min-content;
        line-height: initial;
    }
}
