@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

@font-face {
  font-family: "Eiko";
  src: url("Assets/PPEiko-LightItalic.otf") format("opentype");
  font-weight: lighter;
}

:root {
  --black: #212122;
  --white: #fffdf6;
  --primary: #499254;
  --secondary: #c3da2e;
  --border: 1px;
  --default_margin: 100px;
  --default_padding: 30px;
  --detail_padding: 15px;
  --default-grid: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk";
}

*::selection {
  background-color: var(--secondary);
}

