.tilted-image {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.tilted-image:hover {
  transform: rotate(-5deg);
}
