/* Pre-mount loader — the single loader definition for the whole app.
   Served from /loader.css in both dev and production builds. */
body {
  margin: 0;
}

#loading-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background-color: #161820;
}

.loading-logo {
  position: relative;
}

.loading-logo img {
  max-width: 100%;
  height: auto;
  width: 80px;
}

@media (min-width: 768px) {
  .loading-logo img {
    width: 120px;
  }
}
