body {
  position: fixed;
  inset: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  user-select: none;
  touch-action: none;
}

#appInit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: white;
}

.loadingSpinner {
  position: relative;
  width: 36px;
  height: 36px;
}

.loadingSpinner img {
  width: 100%;
  height: 100%;
  animation: spin 1.6s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
