.sticker {
    display: inline-block;
    margin: 10px;
    background-color: #fff;
}

.sticker.copied {
    animation: color-change 3s;
}

@keyframes color-change {
    0% { background-color: #c0f6c0; }
    100% { background-color: #fff; }
}

.sticker .copy-icon {
    height: 15px;
    cursor: pointer;
}

.sticker .image {
    height: 150px;
    cursor: pointer;
    mix-blend-mode: multiply;
}

.sticker .copy-icon:hover,
.sticker .image:hover {
    opacity: 0.8;
}