/* Center the image on the page */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #111; /* Dark background */
}

/* Define the spinning animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Apply the animation to the image */
.rotating-image {
    width: 50vw; /* Adjust size as needed */
    max-width: 400px;
    height: auto;
    animation: spin 10s linear infinite; /* 10s duration, constant speed, loops forever */
}