:root {
  --bg: #ffffff;
  --paper: #fffdf8;
  --cream: #fff8ec;
  --ink: #111111;
  --muted: #585858;
  --line: #111111;
  --pink: #f25e78;
  --light-gray: #d9d9d9;
  --shadow-xl: 4px 6px 0 #111111;
  --shadow-md: 2px 3px 0 #111111;
  --section-width: 1288px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Heebo", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
