.copy-code {
    border: 1px solid whitesmoke;
}
.copied {
    /* border: 4px solid whitesmoke; */
    border: 1px solid whitesmoke;
    box-shadow: 0 0 3px 2px blue;
    /* background-color: whitesmoke; */
    transform: scale(1.05);
    transition: all .15s;
}
.decopied {
    border: 1px solid whitesmoke;
    box-shadow: none;
    /* background-color: black; */
    transform: scale(1.0);
    transition: all .33s;
}