@font-face {
    font-family: 'TitleFont';
    src: url('/fonts/CJ\ ONLYONE\ NEW\ title\ Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'ContentFont';
    src: url('/fonts/CJ\ ONLYONE\ Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'BottomFont';
    src: url('/fonts/CJ\ ONLYONE\ NEW\ body\ Light.ttf') format('truetype');
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f0f0f0;
    min-height: 100vh; /* 화면 전체 높이 보장 */
}

.container {
    width: 90%;
    max-width: 600px;
    margin: auto; /* 수직 중앙 정렬을 보조 */
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.text-title img {
    display: block;
    margin: 0 auto;
}

.text-title p {
    font-size: 30px; /* 글씨 크기 */
    color: #000; /* 글씨 색상 */
    font-weight: bold; /* 글씨 두께 */
    font-family: 'TitleFont';
}
.text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-contents{
    margin: 10px 0;
    font-size: 25px; /* 글씨 크기 */
    color: black; /* 글씨 색상 */
    font-family: 'ContentFont';
}
.text-contents-list {
    margin: 10px 0;
    color: #333; /* 기본 글씨 색상 */
    font-size: 20px; /* 글씨 크기 */
    font-family: 'BottomFont';
}
.text-bottom {
    margin: 10px 0;
    color: #333; /* 기본 글씨 색상 */
    font-size: 15px; /* 글씨 크기 */
    font-family: 'BottomFont';
}
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    .text-title p, .text-contents, .text-contents-list, .text-bottom {
        font-size: 100%; /* 작은 화면에서 글씨 크기 조정 */
    }
}
