/* ===== Root ===== */
:root {
  --bg: #fff;
  --ink: #23262d;
  --shadow: rgb(50, 52, 59);
  --muted: rgb(155, 155, 155);
  --dark: rgb(48, 55, 62);
  --accent: #daa14c;
  --orange: #ef6434;
  --line: rgba(35, 38, 45, 0.14);
  --max: 1290px;
}

body {
  background-color: var(--bg);
  color: var(--dark);
}

.section {
  padding: 2rem 0;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  line-height: 1.2;
}

.bold {
  font-size: 16px;
  font-weight: 700;
  color: rgb(48, 55, 62);
}
