*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #f8f4ee;
  --white: #fffdfb;
  --blush: #f2d8cc;
  --rose: #c98870;
  --ink: #1a1108;
  --mid: #6d5040;
  --line: #e5d8ce;
  --g: #009c3b;
  --gd: #006b29;
  --y: #f0c41a;
  --b: #002776;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--blush);
  border-radius: 4px;
}
