.loadingPage {
    width:100vw;
    height:100vh;
    position:fixed;
    top: 0;
    left: 0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.314);
    z-index: 999;
}

.loadingPage > div {
    animation: is-rotating 1s infinite;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 6px solid #e5e5e5;
    border-top-color: #fceccd;
    user-select: none;
}

@keyframes is-rotating { to {transform: rotate(1turn);}}