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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(166, 206, 99, 0.08), transparent 22%),
    linear-gradient(180deg, #0b1020 0%, #0d1326 100%);
  color: var(--text);
  line-height: 1.6;
}

main {
  min-height: calc(100vh - 140px);
}

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

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

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

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