/* 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." */

body {
  background-color: #dee2f7;
  color: black;
  font-family: "Brush Script MT", cursive;
}
p {
  font-family: Georgia, serif;
}
h1 {
  font-size: 48px;
}
h1 {
  color: black;
}
h2 {
    font-family: Georgia, serif;
    color: black;
}
    body {
        cursor: url('https://i.pinimg.com/736x/1f/80/f7/1f80f762c127cee81e915b17bc449665.jpg'), auto;
    }
  position: absolute; /* or fixed */
  width: 20px; /* Adjust size as needed */
  height: 20px; /* Adjust size as needed */
  background-color: blue; /* Example styling */
  border-radius: 50%; /* For a circular shape */
  pointer-events: none; /* Prevents it from interfering with clicks */
  z-index: 9999; /* Ensures it's on top of other elements */
  transform: translate(-50%, -50%); /* Centers the element on the cursor */
}