.box_3 {
  text-align: center;
  width: 100%
  margin: auto;
  transition: transform .3s;
}

.box_3:hover {
  cursor: zoom-in;
}

.box_3.scale {
  transform: scale(2, 2);
}

.box_3.scale:hover {
  cursor: zoom-out;
}