<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.box {
margin: 50px auto;
transform: rotate(180deg);
transition: transform 0.5s ease;
background: url("https://images.unsplash.com/photo-1507919909716-c8262e491cde?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60") no-repeat;
background-size: cover;
height: 200px;
width: 200px;
border: 2px solid #000000;
transform: rotate(-150deg);
}
.box:hover {
transform: rotate(90deg);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>