html {
  background: var(--bg);
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at top, rgba(216, 61, 156, 0.09), transparent 28%),
    linear-gradient(180deg, #08070f 0%, #05050a 100%);
  color: var(--text);
  font-family: var(--font-body);
}
h1, h2, h3, h4, p {
  margin: 0;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
button:disabled {
  opacity: 0.62;
  cursor: default;
}
a {
  color: inherit;
  text-decoration: none;
}
.hidden {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
code {
  color: #ffd5ef;
}
