*::before,
*::after,
*{
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  scroll-behavior: smooth;
  /* outline: 1px solid red; */
}

input{
  outline: none;
  color: inherit;
  background: transparent;
  font-weight: inherit;
  font-family: inherit;
}

:root{
  font-size: 10px;
  overflow-x: hidden;
}

h1, h2, p {
  font-family: var(--ff-main);
}

p {
  font-size: var(--fs-paragraph);
  line-height: 1.5;
  color: var(--clr-black);
}

h1, h2 {
  color: var(--clr-accent);
  font-weight: 700;
}

h1 {
  font-size: var(--fs-heading);
}

h2 {
  font-size: var(--fs-subheading);
}

section {
  padding: 1rem clamp(2.5rem, 2vw + 2.5rem, 10rem);
}