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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 16%, rgba(216, 185, 130, 0.1), transparent 24%),
    radial-gradient(circle at 82% 0%, rgba(122, 46, 29, 0.18), transparent 22%),
    linear-gradient(180deg, #100c08 0%, #15100b 42%, #0c0907 100%);
  color: var(--sp-cream);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 80% 24%, rgba(216, 185, 130, 0.1), transparent 26%),
    radial-gradient(circle at 12% 72%, rgba(184, 137, 59, 0.08), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
header,
footer,
section,
article,
aside {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
