html {
  cursor: none;
  --text: #000;
  background: #001220;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 9999;
  pointer-events: none;
}
.custom-cursor div {
  position: absolute;
  display: grid;
  place-items: center;
}
.custom-cursor div div {
  border: 1px solid #636363;
  border-radius: 50%;
/*   animation: pulse 2.5s linear infinite; */
/*   background-color: #fbfaf812; */
  background-color: #636363;
/*   box-shadow: 0 0 50px 5px #636363; */
}
.custom-cursor div:nth-child(1),
.custom-cursor div:nth-child(2) {
  width: 70%;
  height: 70%;
}
.custom-cursor div:nth-child(1) {
  transition: transform 0.2s ease-out;
}
.custom-cursor div:nth-child(2) {
  transition: transform 0.2s ease-out;
}
.custom-cursor div:nth-child(2) div {
  background: #636363;
  border-radius: 50%;
  width: 4px;
  height: 4px;
}
