*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);

  /* if you want 1rem = 10px, easier for calculations */
  /* font-size: 62.5%; */
  font-family: "DM Sans", sans-serif;
  background-color: #242424;
  color: #ffffff;
}
body {
  /* line-height: 1.5; */
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
a{
  color: inherit;
  text-decoration: none;
}
button{
  cursor: pointer;
}
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}

/* Scroll Bar
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 80vh;
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9278fc;
  border-radius: 100vh;
  border: 0px solid #edf2f7;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #3d10f5;
}
