/* LoveCertain — Shared Base Styles */

:root {
  --bg: #FAFAF7;
  --white: #FFF;
  --warm: #F4F2ED;
  --ink: #1A1918;
  --mid: #5C5A54;
  --light: #9A9890;
  --hint: #C4C2BC;
  --rose: #D15240;
  --rose-l: #FDF0ED;
  --rose-d: #B8443A;
  --green: #2D7A52;
  --green-l: #EDF7F0;
  --border: #E6E4DE;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Geist', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  font-family: var(--sans);
  cursor: pointer;
  border: none;
}
