html {
    cursor: url('https://welcometodeerfield.neocities.org/assets/eyeball%20cursor.webp'), auto;
}

body {
  background: #ffffff;
  background-image: url("https://i.imgur.com/h2hCbLz.gif");
  background-size: 90%;
  animation: fadeIn 8s forwards; /* Apply the animation */

}

@keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }