body {
    /* position: relative; */
}
.copied {
    /* border: 4px solid whitesmoke; */
    border: 1px solid whitesmoke;
    box-shadow: 0 0 3px 2px blue;
    background-color: whitesmoke;
    transform: scale(1.25);
    transition: all .15s;
    position: absolute;
     z-index: 99;
}
.decopied {
    position: static;
    z-index: 0;
    border: 1px solid whitesmoke;
    box-shadow: none;
    /* background-color: black; */
    transform: scale(1.0);
    transition: all .33s;
}