:root {
  --orange: #ff3d00;
  --orange-dark: #e63600;

  --black: #050505;
  --white: #ffffff;

  --text: #555b66;
  --muted: #737986;
  --border: #eeeeee;

  --green: #119b25;
  --green-soft: #e9f9ec;

  --red: #d91f1f;
  --red-soft: #fdecec;

  --shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  --container: 1500px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}