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

html {
  min-width: 320px;
  background: var(--lg-color-ink);
  color: var(--lg-color-text);
  font-family: var(--lg-font-family);
  line-height: 1.42;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 13% 7%, rgba(255, 193, 7, .08), transparent 20%),
    radial-gradient(circle at 86% 12%, rgba(45, 140, 255, .045), transparent 24%),
    linear-gradient(180deg, #050606 0%, #090a0a 46%, #030405 100%);
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: var(--lg-text-xl);
  line-height: 1.08;
  font-weight: 820;
}

h2 {
  font-size: var(--lg-text-lg);
  line-height: 1.18;
  font-weight: 780;
}

h3 {
  font-size: var(--lg-text-md);
  font-weight: 760;
}

p {
  color: var(--lg-color-muted);
  font-size: var(--lg-text-sm);
}

:focus-visible {
  outline: 3px solid rgba(255, 193, 7, .52);
  outline-offset: 3px;
}
