.loadingScreen {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(70, 82, 114, 1);
}


.loadIcon{
    display: block;
    animation: spinEase 1.5s infinite; /* 2s for speed, infinite loop */
    transform-origin: center; /* spin around center */
}

@keyframes spinEase {
    0% {
        transform: rotate(0deg);
        animation-timing-function: cubic-bezier(0.9, 0, 0.2, 1); /* start fast, end slow */
    }
    100% {
        transform: rotate(360deg);
        animation-timing-function: cubic-bezier(0.9, 0, 0.2, 1);
    }
}