:root {
  --red: #ff3b30;
  --red-soft: #ff5449;
  --black: #000000;
  --ink: #0a0a0a;
  --card: #141414;
  --card-hover: #1a1a1a;
  --muted: #b0b0b0;
  --white: #ffffff;
  --light-bg: #eef1fb;
  --light-ink: #0a0a0a;
  --light-muted: #6b6f7d;
  --max: 1280px;
  --font: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.accent {
  color: var(--red-soft);
}
