:root {
  --yellow: #ffff00;
  --yellow-1: #fbfbc8;
  --yellow-2: #ffff4d;
  --yellow-3: #cccc00;
  --red: #de5021;
  --green: #59993d;
  --black: #242424;
  --white: #ffffff;
  --white-1: #fafafa;
  --gray: #9e9e9e;
  --gray-1: #6e6e6e;
  --gray-2: #3d3d3d;
  --gray-3: #29251d;
  --gray-4: #1f1f1f;
  --gray-5: #1a1a1a;
  --space-small: 4px;
  --space-base: 8px;
  --space-large: 16px;
  --space-xl: 24px;
  --space-xxl: 32px;
  --space-max: 40px;
  --screen-size-laptop: 1024px;
  --screen-size-tablet: 768px;
  --screen-size-mobile-l: 425px;
  --screen-size-mobile-m: 375px;
  --screen-size-mobile-s: 320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-size: 20px;
  font-family: 'Futura Light', system-ui;
  color: var(--black);
  margin: 0;
  width: 100%;
}
