html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-feature-settings:
    "liga" off,
    "clig" off;
}

#content {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

input::-ms-clear {
  display: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

/* WebKit / Chromium - overlay scrollbar (sits on top of content) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent;
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.6);
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
  background: transparent;
  border: 0;
}

::-webkit-scrollbar-corner {
  background: transparent;
}