:root {
    --blockSize: 16px;
    --innerSize: 100vh;
    }
qwer{
    display: block;
    width: var(--blockSize);
    height: var(--blockSize);
    position: absolute;
    user-select: none;
}
.draggable {
    width: 150px;
    height: 150px;
    cursor: pointer;
    position: absolute;
}
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 로더 애니메이션 스타일 */
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

/* 로딩 애니메이션 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 실제 콘텐츠 스타일 */
#content {
    visibility: hidden; /* 로딩 화면이 사라질 때까지 콘텐츠를 숨깁니다 */
}