<style>
.beauty-rotate {
width: 300px;
height: 300px;
border: 4px double #bd6c46; /* Рамка */
overflow: hidden;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.beauty-rotate:hover {
border-radius: 50%;
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
</style>