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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: crosshair;
}
