

*{
  cursor: none;
}
.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  box-shadow: 0px 0px 10px white;
}

.cursor-outline {
  width: 45px;
  height: 45px;
  border: 2px solid rgb(211, 30, 66);
  box-shadow: 0px 0px 15px rgb(211, 30, 66);
  transition: width 0.2s ease, height 0.2s ease;
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: 1;
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1c1c1cce;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #D41E43;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #D41E43;
}