overflow:hidden;
transform:scale(1.2);/*подобрать коэффициент*/
content: attr(attr-name)
.target:hover,
.target:active{
animation: rotate 0.5s ease-in-out;
}
keyframes rotate{
to{
transform:rotate(360deg);
}
}
<section>
<div class="content"></div>
</section>
section{
width: 100%;
background-color: blue;
}
.content{
margin: 0 auto;
width: 1200px;
}