.background {
  


  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clipboard {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(35px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 15px;

    margin-top: 10px;

    transition: transform .2s; /* Animation */
  cursor: pointer;
    color: antiquewhite;
 
  font-size: 16px;
  position: relative;
  top: 0;
  transition: all 0.2s ease;
}
.clipboard:hover {
  top: 2px;
}