html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #0d0705;
}

.app-boot {
  position: fixed;
  z-index: 2147483647;
  inset: 0;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: #0d0705;
  color: #ffe1ad;
  font-family: Arial, sans-serif;
}

.app-boot section {
  display: grid;
  width: 100%;
  max-width: 620px;
  gap: 16px;
  padding: 28px;
  border: 2px solid #ffb800;
  border-radius: 14px;
  background: #35190f;
}

.app-boot span {
  color: #ffb800;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.app-boot h1,
.app-boot p {
  margin: 0;
}

.app-boot h1 {
  font-size: 42px;
  line-height: 1;
}

.app-boot p {
  color: #e7b980;
  font-size: 18px;
  line-height: 1.5;
}

.app-boot button {
  width: max-content;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #ffb800;
  border-radius: 9px;
  background: #ffb800;
  color: #201006;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.app-boot[data-state="error"] section {
  border-color: #ff5b61;
}

@media (max-width: 520px) {
  .app-boot {
    padding: 14px;
  }

  .app-boot section {
    padding: 22px;
  }

  .app-boot h1 {
    font-size: 34px;
  }
}
