/* ================= ROOT VARIABLES ================= */
:root {
  --primary-color: #c4161c;
  /* --white: #f1f0eb; */
   --white: #f1f0eb;
  --text-dark: #101010;
  --text-muted: #666666;
  --font-heading: 'Poppins';
  --font-body: 'Metropolis' , sans-serif;
  --transition: all 0.4s ease;
}


/* ================= RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

p{
   font-family: var(--font-body);
}