body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", serif;
}

.btn-danger {
  background-color: #D32323;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 30px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
  box-shadow: 0px 4px 9px #171a1f1C, 0px 0px 2px #171a1f1F;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #171a1f1F; 
  border-radius: 30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888; 
}