html,
body {
  margin: 0;
  padding: 0;
  background: #f2ede3;
}

body {
  font-family: "Archivo", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #1c1a17;
}

#boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2ede3;
  transition: opacity 320ms ease-out;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.55);
}

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

#boot::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 24px;
  height: 1px;
  transform: translateX(-50%);
  background: #2e5bff;
  animation: boot-pulse 1.4s ease-in-out infinite;
}

@keyframes boot-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scaleX(0.6);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.4);
  }
}
