@tailwind base;
@tailwind components;
@tailwind utilities;

html,
body {
  scroll-behavior: smooth;
  background-color: white;
  color: #0f0f0f;
  font-family: 'neo-sans', sans-serif;
  overflow-x: hidden;
}

article,
div,
section {
  scroll-margin-top: 40px;
}

@layer base {
  h2 {
    @apply text-2xl font-semibold text-secondary md:text-3xl lg:text-[34px];
  }

  p {
    @apply text-base font-light text-black md:text-lg lg:text-xl;
  }
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.range-gradient {
  background: linear-gradient(180deg, #dddddd 0%, #ffffff 100%);
}
