.logo-hover:hover{

    border: 3px solid black;
    background-color: midnightblue;

}

i.rights {
    display: inline-block;
  }
  
  .bounce-image {
    transition: transform 0.3s ease;
  }
  
  .rights:hover .bounce-image {
    animation: bounce 0.5s 2 alternate;
  }
  
  @keyframes bounce {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }

