body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.color-wheel {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200vw; /* Large enough to cover the entire screen during rotation */
    height: 200vw;
    margin-top: -100vw; /* Offset to center the wheel */
    margin-left: -100vw;
    border-radius: 50%;
    background: conic-gradient(
        red 0deg 51.43deg, 
        orange 51.43deg 102.86deg, 
        yellow 102.86deg 154.29deg, 
        green 154.29deg 205.71deg, 
        blue 205.71deg 257.14deg, 
        indigo 257.14deg 308.57deg, 
        violet 308.57deg 360deg
    );
    animation: rotate-colors 5s linear infinite;
    z-index: -2; /* Ensure the color wheel is behind the image */
}

@keyframes rotate-colors {
    100% { transform: rotate(360deg); }
}

.image-container {
    position: fixed; /* Changed to fixed positioning */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1; /* Above the color wheel but below everything else */
}

img {
    display: block;
    max-width: 300px; /* Adjust as needed */
    max-height: 300px; /* Adjust as needed */
    width: 100%;
    height: auto;
}

