/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.module {
  cursor: url('path-to-image.png'), auto;	
}

  .parallax {
    /* The image used 
    
    https://vignette.wikia.nocookie.net/disney/images/3/3c/Kidagakash-disney906.jpg/revision/latest?cb=20120401035100
    "https://whatupyoyo.neocities.org/images/disney%20symbol.jpg
    */
    background-image: url(" https://vignette.wikia.nocookie.net/disney/images/3/3c/Kidagakash-disney906.jpg/revision/latest?cb=20120401035100");

    /* Set a specific height */
    height: 500px; 

    /* Create the parallax scrolling effect 
   */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
  }

body {
  
	cursor: url('http://cur.cursors-4u.net/others/oth-9/oth803.cur'), default;
cursor: url(http://ani.cursors-4u.net/nature/nat-11/nat1047.cur), auto;

background-color: black;


  color: blue;
  /*font-family:veranda; */
  font-family:"Comic Sans MS", cursive, sans-serif
 /* font: 600 14px/24px "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", Sans-Serif; */

}