*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 

html, body {
  height: 100%;
  font-family: var(--primary-font), sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
body {
      background: var(--primary-bg-color);
      color: var(--primary-text);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

ul, ol {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Firefox */
@-moz-document url-prefix() {
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--sidebar-border-color) transparent;
  }
}
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: inherit;
}

::-webkit-scrollbar-thumb {
    background: var(--sidebar-border-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2c3e50;
}