*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top, var(--color-bg-surface), var(--color-bg-deepest));
  color: var(--color-parchment);
  font-family: var(--font-body);
  font-size: var(--size-base);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

button,
input {
  font: inherit;
}

button {
  min-height: 44px;
  cursor: pointer;
}

button:disabled,
.is-disabled {
  cursor: not-allowed;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-gold-bright);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

p {
  margin: 0;
}

a {
  color: var(--color-gold-bright);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
