.my-div {

  background-color: #f0f0f0;
  transition: box-shadow 0.3s ease;
}

.my-div:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
