.hima-box {
  width: 100px;
  height: 100px;
  background-color: skyblue;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hima-box1 {
  transform: translateX(0);

  animation-name: slide-right;
  animation-duration: 2s;
  animation-timing-function: ease;
}

@keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
  }
}

.hima-box2 {
  transition: transform 0.3s ease;
}

.hima-box2:hover {
  animation-name: box-bounce;
  animation-duration: 0.8s;
}

@keyframes box-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
}

.hima-box3 {
  animation-name: slide-right;
  animation-duration: 3s;
  animation-timing-function: linear;

  animation-iteration-count: infinite;
  animation-direction: alternate;
}
