@import url("https://fonts.googleapis.com/css?family=Inter:400,700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

::-webkit-scrollbar {
  width: 0.4rem;
  background-color: beige;
}

::-webkit-scrollbar-thumb {
  background-color: #da373d;
  border-radius: 0.2rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bf3136;
}

::-webkit-scrollbar-track:hover {
  background-color: antiquewhite;
}

::-webkit-scrollbar-corner {
  background-color: aliceblue;
}


