* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  background: #efe9dd;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#dashboard-frame {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1712;
  transition: opacity .4s ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  color: #efe9dd;
}

.loader-inner p {
  margin-top: 18px;
  font: 600 13px/1 "Space Mono", ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b0a692;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 3px solid rgba(201, 161, 94, .25);
  border-top-color: #c9a15e;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
