* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--bg-main);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.75;
  pointer-events: none;
}

body::before {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.45) 0%, rgba(34, 211, 238, 0) 75%);
}

body::after {
  width: 500px;
  height: 500px;
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.36) 0%, rgba(245, 158, 11, 0) 72%);
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.55rem, 3.8vw, 2.6rem);
  line-height: 1.14;
}

h3 {
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  line-height: 1.2;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
select,
input {
  font: inherit;
  color: inherit;
}

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