/* style.css */

body {
    font-family: 'Arial', sans-serif;
    display: flex; /* Flexbox를 사용하여 내용을 중앙에 배치 */
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    min-height: 100vh; /* 뷰포트 높이 전체를 차지하도록 설정 */
    margin: 0;
    background-color: #f0f2f5; /* 부드러운 배경색 */
    color: #333;
    text-align: center; /* 텍스트 중앙 정렬 */
    padding: 20px; /* 작은 여백 추가 */
    box-sizing: border-box; /* 패딩이 전체 크기에 포함되도록 */
}

.container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px; /* 컨테이너 최대 너비 */
    width: 100%; /* 반응형을 위해 너비 100% 설정 */
}

.logo-large {
    max-width: 150px; /* 로고 크기 조정 */
    height: auto;
    margin-bottom: 25px;
    animation: bounceIn 1s ease-out; /* 로고에 부드러운 등장 애니메이션 추가 */
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.status-message {
    font-size: 1.3em;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.small-text {
    font-size: 0.9em;
    color: #95a5a6;
}

/* 애니메이션 정의 */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* 반응형 디자인 */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    .logo-large {
        max-width: 120px;
    }

    h1 {
        font-size: 2em;
    }

    .status-message {
        font-size: 1.1em;
    }
}