html {
  scroll-behavior: smooth;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: var(--text-main);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 600;
  font-size: 2.4rem;
}

h3 {
  font-weight: 600;
}

p {
  font-weight: 400;
}


p {
  color: var(--text-muted);
  line-height: 1.6;
}

section {
  padding: 6rem 8%;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 5%;
  }

  h2 {
    font-size: 2rem;
  }
}
