html {
  text-align: center;
  background-color: aquamarine;
}

.morph img {
    width: 200px;
    height: 200px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
   
  .morph:hover img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }