@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  --first-color: black;
  --second-color: white;
  --third-color: #0ea455;
  --fourth-color: #f4b100;
  --fifth-color: rgba(255, 255, 255, 0.7);

  --ff-heading: "EB Garamond", sans-serif;
  --ff-text: "Inter", sans-serif;
  --ff-title: "Poppins" sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
