@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

:root {
  --green: #95c11e;
  --light-green: #b3e824;
}

html {
  overflow-x: hidden;
}

body {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  list-style: 1.88;
  color: white;
  overflow-x: hidden;
}

a {
  cursor: pointer;
  color: white;
}

::-webkit-scrollbar {
  background-color: black;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 50px;
}

::selection {
  background-color: white;
  color: var(--green);
}


/*------------------------------
----------> Pointer <------------
--------------------------------
*/

.pointer-dot {
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--green);
  border-radius: 50%;
  position: fixed;
  display: none;
  z-index: 51;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pointer-large {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  background-color: var(--green);
  filter: blur(120px);
  transform: translate(-50%, -50%);
  z-index: 9;
}
