a:hover,
button:hover {
  cursor: pointer;
}

html {
  background-color: rgb(33, 33, 33);
  min-height: 100vh;
}

body {
  margin: 0;
  min-height: 100vh;
}

:not(code *) {
  font-family: "SF Pro Display", "Ubuntu";
  font-weight: 400;
  box-sizing: border-box;
}

#root {
  background-color: rgb(33, 33, 33);
  display: flex;
  min-height: 100vh;
}

.ew-resize-cursor * {
  cursor: ew-resize !important;
}

::-webkit-scrollbar {
  background-color: #212121;
  width: .5rem;
  height: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: #858585;
  border-radius: 1rem;
}

::-webkit-scrollbar-corner {
  opacity: 0;
}

.hidden-scrollbar::-webkit-scrollbar {
  display: none;
}