@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  background-color: #000;
  font-family: "Poppins", sans-serif;
  transition: opacity 0.5s ease-in-out;
}

body.fade-out {
  opacity: 0;
}

button,
a,
input {
  outline: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 100%;
  cursor: pointer;
}

::-webkit-scrollbar-track {
  background: #181818;
}

::-webkit-scrollbar-thumb {
  background: #fffefe6e;
  border-radius: 4px;
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
