@tailwind base;
@tailwind components;
@tailwind utilities;
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
}

body {
  background-image: url("../images/bg.png");
  background-repeat: repeat;
  background-size: 10%;
}

input[type="checkbox"] {
  accent-color: rgb(91 33 182);
}

::-webkit-scrollbar {
  width: 0.6rem;
  background-color: rgb(221 214 254);
  border-radius: 5rem;
}
::-webkit-scrollbar-thumb {
  background-color: rgb(196 181 253);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgb(76 29 149);
}
