body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
}

.splash-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    text-align: center;
}

.splash-image {
    max-width: 56px; /* index 페이지와 동일한 크기 */
    height: auto; /* 비율 유지 */
    margin-top: 280px;
    margin-bottom: 40px; /* 이미지와 텍스트 사이 간격 */
}

.splash-text-bold {
    font-weight: 700;
}

.splash-text-2 {
    margin-top: 8px;
} 