body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  gap: 1rem 0;
  inline-size: 100%;
}

/* Gestu logo as the initial loading indicator — rotates while the app boots. */
.loading-logo img {
  animation: rotate 0.9s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
