/* 90s Girl Power meets Gothic Witchy */
body {
    background-color: purple; /* Initial background color */
    color: #ff69b4; /* Bright pink text for that girl power vibe */
    font-family: "Comic Sans MS", "Papyrus", sans-serif; /* Fun retro fonts */
    margin: 0;
    padding: 0;
    animation: colorCycle 10s infinite; /* Background color cycling effect */
    transition: background-color 2s ease-in-out; /* Smooth transition between colors */
    cursor: url(/curser.png), auto; /* Set the custom cursor for the entire site */
}

/* Color cycling animation */
@keyframes colorCycle {
    0% {
        background-color: purple;
    }
    33% {
        background-color: lavender;
    }
    66% {
        background-color: black;
    }
    100% {
        background-color: purple;
    }
}

/* Additional styles */
a {
    color: #ff1493; /* Hot pink links for 90s girl power */
    text-decoration: underline;
    font-weight: bold;
    cursor: url(/curser.png), auto; /* Ensures the custom cursor stays on links */
}
