/* 전체 화면을 덮는 로딩 div */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* 흰색 반투명 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* 로고와 텍스트 스타일 */
.loading-content {
    text-align: center;
    color: #333;
}

.loading-content img {
    width: 180px; /* 로고 크기 조정 */
    margin-bottom: 20px;
    /* 위아래 움직이는 애니메이션 추가 */
    animation: float 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1.2em;
}

/* 로고 위아래 움직이는 애니메이션 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px); /* 로고가 살짝 위로 올라감 */
    }
}