.loadingScreen {
  position: absolute;
  z-index: 5;
	min-width: 500px;
  width: 100%;
  height: 100vh;
  background-color: #100036;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
}