.cursor {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  border: 1px solid rgb(255, 200, 0);
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 1000;
}

.cursor2 {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: rgb(194, 133, 0);
  opacity: 0.3;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 1000;
}

.hover {
  background-color: none;
  opacity: 0.5;
  z-index: 1000;
  border: none;
}

.hover2 {
  opacity: 0.4;
  width: 55px;
  height: 55px;
  background-color: rgba(255, 196, 0, 0.437);
}

.cursorinnerhover {
  width: 50px;
  height: 50px;
  opacity: 0;
}
