* {
  box-sizing: border-box;
}

html,
body {
  box-sizing: border-box;
  color: var(--theme-base-text-color);
  font-family: var(--theme-font-family-sans);
  margin: 0;
  padding: 0;
}

/* html cannot be any other color than white for printing purposes */
body {
  background-color: var(--theme-bg);
}

/* body must be white for printing purposes */
@media print {
  body {
    background-color: white;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

/* Custom scrollbar styles */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--theme-scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background-color: var(--theme-scrollbar-thumb);
  border-radius: 10px;
  border: 3px solid var(--theme-scrollbar-thumb);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--theme-scrollbar-thumb-hover);
}

@font-face {
  font-family: "Urbanist-Regular";
  src: url("Urbanist-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Urbanist-Bold";
  src: url("Urbanist-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}
