
:root {
  --green: #22A06B;
  --green-hover: #1f9363;
  --orange: #EB862A;
  --gray: #44546F;
  --light-gray: #FAFBFC;
  --extra-light-gray: #DDDBDB;
  --brand-green: #95C93F;
  --brand-green-dark: #054F31;
  --brand-brown: #3F2313;
  --brand-coral: #fe5f59;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #747e74;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #95C93F;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #22A06B;
}
