/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
} */

.image-container {
    position: relative;
    display: inline-block;
}

.desaturated-image {
    display: block;
    width: 100%;
}

.color-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at var(--mouse-x) var(--mouse-y));
    pointer-events: none;
    transition: clip-path 0.05s ease-out;
}
