@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


* {
  padding: 0;
  margin: 0;
  border: none;
  outline: transparent;
  -webkit-tap-highlight-color: transparent !important;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  background-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: auto;
  scroll-behavior: smooth;
  background-color:#f5f5f5;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
  user-select: none;
}

*::-webkit-scrollbar {
  width: 15px;
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(200, 6, 30); 
}

@media only screen and (max-width: 1200px) {
  *::-webkit-scrollbar {
    width: 5px;
  }
}