/* 2d transfrom */

/* 2d_transform.css */

#chicken,
#big,
#move {
  transition: transform 0.5s;
}

#chicken:hover {
  transform: rotate(45deg);
}

#big:hover {
  transform: scale(2);
}

.move-right {
  transform: translateX(900px);
}

body{
  background-color: lightyellow;
}