:root {
  --font: "Outfit", sans-serif;

}

* {
  font-family: var(--font);
  box-sizing: border-box;
  outline: none;
  
  /* Prevent blue highlight on mobile touch */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}