@import "tokens.css";

/* 🎯 Responsive Base */
html {
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

/* Inherit box-sizing everywhere */
*, *::before, *::after {
  box-sizing: inherit;
}

/* 🎨 Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #FAFAFA;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  /* fluid typography between 1rem and 1.125rem */
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
