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

body {
  background: #FFFFFF;
  overflow: auto;
}

/* Scrollbar Start */
/* width */
::-webkit-scrollbar {
  display: none;
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #8A8A8A;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #FFBD03;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #FFBD03;
}

/* Scrollbar End */
/* Test decoration none Start */
a {
  text-decoration: none;
}

/* Test decoration none End*/
