@font-face {
  font-family: comicSans;
  src: url(/fonts/COMIC.TTF);
}

html {
  font-family: comicSans;
}

body {
  background-color: white;
  color: black;
  margin: 0%;
  font-family: comicSans;
  
    cursor: url('/normal-cursor.png') 0 0, auto;
}

a:hover {
    cursor: url('/hovered-cursor.png') 0 0, pointer;
}
 
 button:hover {
   cursor: url('/hovered-cursor.png') 0 0, pointer;
 }

body {
    cursor: url('/normal-cursor.png') 0 0, auto;
}

a:hover {
    cursor: url('/hovered-cursor.png') 0 0, pointer;
}
  a:link {
  color: cornflowerblue;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: cornflowerblue;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: blueviolet;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: cornflowerblue;
  background-color: transparent;
  text-decoration: none;
}