
#BordureAnim {
  position: relative;
  width: 40rem;
  background: white;
  border-radius: 0% 0% 0% 0% / 0% 0% 0% 0% ;
  color: rgb(0, 0, 0);
  box-shadow: 50px 50px rgba(0,0,0,.15);
  transition: all .4s ease;
}
#BordureAnim:hover {
  border-radius: 0% 0% 50% 50% / 0% 0% 5% 5% ;
  box-shadow: 10px 10px rgba(0,0,0,.25);
}