Edit in JSFiddle

<p>Винил</p>
p {
  animation: rotating 4s linear 0s infinite;
  background: slateblue;
  border-radius: 60px;
  color: white;
  height: 120px;
  line-height: 120px;
  margin: 0;
  text-align: center;
  width: 120px;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}