/* ===== HIDE SCROLLBAR ===== */
html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

/* ===== BODY ===== */
body {
  background-color: var(--bg-deep);
  overflow-x: hidden;
  font-family: var(--font-headline);
  color: var(--text-primary);
}
