* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #f6f6f6;
  color: #1c1e27;
  font-family: poppins-400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

input,
textarea {
  border: none;
  outline: none;
}
p {
  margin: 0;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #758db9;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #758db9;
}

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