* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --------------- */
/* CURSOR SETTINGS */
/* --------------- */

html,
body {
  /* Removes Original Cursor */
  cursor: none;
  background-color: lightslategrey;
}

.custom-cursor {
  position: absolute;
  top: 0;
  left: 0;

  /* Ensure Cursor shows */
  z-index: 99;

  /* Will remove custom main cursor */
  /* display: none; */
}

.site-wide {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid black;
}

.site-wide .pointer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: black;

  /* Cursor Click Effect */
  transition:
    width 0.1s ease-in-out,
    height 0.1s ease-in-out;
}

/* Cursor Click Effect */
.site-wide.active .pointer {
  width: 20px;
  height: 20px;
}

/* ---------- */
/* TEST BOXES */
/* ---------- */

.boxes {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* --------------- */
/* CURSOR IN BOXES */
/* --------------- */

.boxes .box {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

/* ----------- */
/* TEST BOXES */
/* ---------- */

/* Link for cursor Property */
/* https://www.w3schools.com/cssref/pr_class_cursor.php */

/* Main Cursor */

.boxes .box:nth-child(1) {
  background-color: palevioletred;
}

/* Help Cursor */

.boxes .box:nth-child(2) {
  background-color: palegoldenrod;
  cursor: help;
}

.boxes .box:nth-child(3) {
  background-color: palegreen;
  cursor: cell;
}

.boxes .box:nth-child(4) {
  background-color: paleturquoise;
  cursor: crosshair;
}

.boxes .box:nth-child(5) {
  background-color: peachpuff;
  cursor: url(img/leftredarrow.gif), auto;
}

.boxes .box:nth-child(6) {
  background-color: sandybrown;
  cursor: cell;
}

.boxes .box:nth-child(7) {
  background-color: plum;
  cursor: cell;
}

/* --------------- */
/* CURSOR IN BOXES */
/* --------------- */

.box-bound {
  display: block;
  width: 100px;
  height: 70px;
  margin-left: 1px;
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  transition:
    width 0.1s ease-in-out,
    height 0.1s ease-in-out;
}

.box-bound.active {
  width: 150px;
  height: 90px;
}
