body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

#image-container {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
    cursor: pointer;
}

#original-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#shards-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shard {
    position: absolute;
    background-size: 400px 300px;
    background-repeat: no-repeat;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.instructions {
    margin-top: 20px;
    color: #666;
}