#loadingDiv {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.preloadPage {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 0;
    width: 100%;
    height: 100%;
}

.preloadPage span {
    display: block;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}