strong {
  font-weight: 500;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

* {
  box-sizing: border-box;
}

*:not(input, textarea) {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#root {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
*::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
*::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
*::-webkit-scrollbar-button {
  display: none;
}
