body {
  cursor: url("images/cursor2.png"), auto; /* CURSOR (NEEDS TO BE 32X32 PX PNG) */
  background-color: black;
  color: white;
}


a:link {
  color: dimgray; /* Unvisited link color */
  text-decoration: none; /* Removes the default underline */
}
a:visited {
  color: dimgray; /* Visited link color */
}

a:hover {
  color: lightpink; /* Link color on mouse over */
  text-decoration: none; /* Adds underline on hover */
}

a:active {
  color: lightpink; /* Link color at the moment of click */
}

/* HIDDEN SCROLLBAR */
html {
    overflow:scroll;
    overflow-x: hidden;
    }
::-webkit-scrollbar {
width: 0;
background: transparent;
}
::-webkit-scrollbar-thumb {
background: transparent;
}
    
::selection {
      background: white; /* HIGHLIGHT BACKGROUND COLOR */
      color: lightpink; /* HIGHLIGHT TEXT COLOR */
}
    