/* Cosmic-Themed Animated Background for Squirrels in Spacesuits */
body {
    background: radial-gradient(circle at center, #1a2a3a, #16222a, #0f2027);;
	color: #ffffff;
	margin: 0;
    padding: 0;
    font-family: 'Comic Sans MS', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Shooting Stars Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    animation: shootingStars 10s linear infinite;
}

@keyframes shootingStars {
    0% {
        background: url('Images/shooting_star.png') no-repeat -50px -50px;
        background-size: 100px;
    }
    50% {
        background-position: 100vw 100vh;
    }
    100% {
        background-position: -50px -50px;
    }
}

/* Glowing Nebula Animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.3), transparent),
                radial-gradient(circle at 30% 70%, rgba(200, 150, 255, 0.2), transparent);
    opacity: 0.5;
    z-index: -2;
    animation: pulsate 8s infinite ease-in-out;
}

@keyframes pulsate {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Floating Stars */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: float 5s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}