/*copy-text.css*/
button.copy-text{
position: relative;
display: inline-block;
width: 7.6rem;
height: 2.4rem;
margin: 0 0.6rem;
line-height: 1.2rem;
background-color: rgba(255,255,255,0.4);
border-radius: 0.4rem;
font-size: 1.1rem;
font-weight: 900;
z-index: 999;
}
button.copy-text::before{
    content: '\f0c5';
    font-family: 'Font Awesome 6 Free';
    font-size: 1.6rem;
    margin: 0 0.3rem 0 0;
}
button.copy-text:hover{
  opacity: 0.8;
}
