@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700;800&family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@900&display=swap');
html,
body {
  padding: 0;
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  background: rgb(30,30,30);
  /* background: url('/prediction-back.png'); */
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  color: rgb(240, 240, 240);
  overflow-x: hidden;
}

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

* {
  box-sizing: border-box;
}

/*-- scroll styling */

::-webkit-scrollbar {
  width: 2px;
  border-radius: 10px;
  height: 3px;
  margin: 0px 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
  margin: 0px 20px;
}

::-webkit-scrollbar-thumb {
  background: rgb(91, 91, 91);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, rgb(177, 76, 255), rgb(195, 1, 189));
  ;
}

/* -------------------- */

/* -------------------- */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}