
#loadingScreen {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* 이 부분이 추가되었습니다. */
    z-index: 10;
}

#loadingMessage {
    font-size: 20px;
    color: #000;
    margin-top: 20px; /* 이미지와 텍스트 사이의 간격을 조절합니다. */
}
