#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    margin-bottom: 40px;
}

.loading-logo img.logo {
    width: 100px;
}

#loading-percentage {
    font-size: 18px;
    color: #000;
}

/* Add scaling effect for the logo and percentage text */
#loading-screen .loading-content {
    transition: transform 1s ease, opacity 1s ease; /* Add smooth transition for scaling and opacity */
}

#loading-screen.shrink .loading-content {
    transform: scale(0.5); /* Shrink the logo and percentage */
    opacity: 0; /* Fade out the content */
}
