/* Pretendard 폰트 및 기본 설정 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
    background: linear-gradient(180deg, #141318, #27235A, #512DA8, #6F8BEF);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* 메인 컨테이너 */
.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

/* 로고 */
.logo img {
    width: 150px;
}

/* 슬로건 */
.slogan p {
    font-size: 2rem; /* 슬로건 크기 확대 */
    font-weight: bold;
    font-style: italic;
    color: #d5cde8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* 텍스트 강조 */
    margin-bottom: 80px;
}

/* 준비중 메시지 */
.content h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
}

/* 푸터 */
footer {
    margin-top: 100px;
    font-size: 0.9rem;
    color: #ccccff;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .logo img {
        width: 120px; /* 로고 크기 조정 */
    }

    .slogan p {
        font-size: 1.5rem; /* 슬로건 크기 모바일에 맞게 조정 */
    }

    .content h1 {
        font-size: 1.2rem; /* 준비중 메시지 크기 조정 */
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 100px; /* 작은 화면용 로고 크기 */
    }

    .slogan p {
        font-size: 1.2rem; /* 작은 화면용 슬로건 크기 */
    }

    .content h1 {
        font-size: 1rem; /* 준비중 메시지 크기 조정 */
    }
}