* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

a {
  text-decoration: none;
  color: var(--text);
}

a:hover {
  color: var(--accent);
}

.d_none {
  display: none !important;
}

.d_flex {
  display: flex !important;
}

.position_fixed {
  position: fixed;
}

.curser_loading {
  cursor: wait !important;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

button {
  font-family: inherit;
}
