/* base.css — Reset, polices, scrollbar */

@font-face {
  font-family: 'Aptos Display';
  src: local('Aptos Display'), local('Aptos'), local('Calibri');
  font-weight: 700
}

@font-face {
  font-family: 'Aptos';
  src: local('Aptos'), local('Calibri'), local('Segoe UI');
  font-weight: 400
}

@font-face {
  font-family: 'Aptos';
  src: local('Aptos Bold'), local('Calibri Bold');
  font-weight: 600
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html,
body {
  height: 100%;
  font-family: var(--font);
  background: var(--bg);
  color: var(--tx);
  -webkit-font-smoothing: antialiased
}

input,
textarea,
button,
select {
  font-family: inherit
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 3px
}
