body {
    background-color: #250821;
    color: #fff;
}

.tilt-left, .tilt-right {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth animation */
}

.tilt-left:hover {
  transform: rotate(-5deg) scale(1.1); /* Rotate and scale */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}

.tilt-right:hover {
  transform: rotate(5deg) scale(1.1); /* Rotate and scale */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}

