@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* MAIN */
:root {
  --blue: #0f90ff;
  --blue-dark: #0088ff;
  --blue-light: #d1fae5;
  --gray-soft: #f8fafc;
  --gray-line: #e2e8f0;
  --text-main: #0f172a;
  --text-sub: #64748b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cairo", sans-serif;
  background: #fff;
  color: var(--text-main);
  scroll-behavior: smooth;
}
